pocketmine\utils\Range::__construct PHP Method

__construct() public method

public __construct ( integer $min, integer $max )
$min integer
$max integer
    public function __construct(int $min, int $max)
    {
        $this->minValue = $min;
        $this->maxValue = $max;
    }