Files
Bukkit/src/main/java/org/bukkit/event/weather/WeatherEvent.java
2011-06-25 22:46:19 -04:00

26 lines
519 B
Java

package org.bukkit.event.weather;
import org.bukkit.World;
import org.bukkit.event.Event;
/**
* Represents a Weather-related event
*/
public class WeatherEvent extends Event {
protected World world;
public WeatherEvent(final Event.Type type, final World where) {
super(type);
world = where;
}
/**
* Returns the World where this event is occurring
*
* @return World this event is occurring in
*/
public final World getWorld() {
return world;
}
}