Added Weather and WeatherStorm

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot 2011-04-21 16:51:43 +01:00
parent 101cdea636
commit a6d7f003fd
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 {
}