blob: e76e9835a6db683f8ef374b36ccfa08e9d31ba30 [file] [log] [blame] [raw]
package net.glowstone.entity;
import org.bukkit.Location;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Weather;
/**
* Represents a Weather related entity, such as a storm.
*/
public abstract class GlowWeather extends GlowEntity implements Weather {
public GlowWeather(Location location) {
super(location);
}
public EntityType getType() {
return EntityType.WEATHER;
}
}