org.bukkit.event.weather.WeatherEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chest-server Show documentation
Show all versions of chest-server Show documentation
A spigot fork to kotlin structure and news.
The newest version!
package org.bukkit.event.weather;
import org.bukkit.World;
import org.bukkit.event.Event;
/**
* Represents a Weather-related event
*/
public abstract class WeatherEvent extends Event {
protected World world;
public WeatherEvent(final World where) {
world = where;
}
/**
* Returns the World where this event is occurring
*
* @return World this event is occurring in
*/
public final World getWorld() {
return world;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy