Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / event / weather / WeatherEvent.java
@vlad20012 vlad20012 on 24 Feb 2017 443 bytes initial
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;
	}
}