pocketmine\event\level\WeatherChangeEvent::__construct PHP Méthode

__construct() public méthode

public __construct ( Level $level, integer $weather, integer $duration )
$level pocketmine\level\Level
$weather integer
$duration integer
    public function __construct(Level $level, int $weather, int $duration)
    {
        parent::__construct($level);
        $this->weather = $weather;
        $this->duration = $duration;
    }