All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.utils.math.FloatRange Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.utils.math;

public class FloatRange extends Range {

  public FloatRange(Float minimum, Float maximum) {
    super(minimum, maximum);
  }

  public FloatRange(Float value) {
    super(value);
  }

  /** {@inheritDoc} */
  @Override
  public boolean isInRange(Float value) {
    return value >= this.getMinimum() && value <= this.getMaximum();

  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy