Added Weather and WeatherStorm

This commit is contained in:
Dinnerbone 2011-04-21 16:51:43 +01:00
parent cfb241f275
commit bc7d54dda4
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package org.bukkit.entity;
/**
* Represents a Weather related entity, such as a storm
*/
public interface Weather extends Entity {
}

View File

@ -0,0 +1,9 @@
package org.bukkit.entity;
/**
* Represents an instance of a weather storm entity
*/
public interface WeatherStorm extends Weather {
}