Added Weather and WeatherStorm

This commit is contained in:
Dinnerbone
2011-04-21 16:51:43 +01:00
parent cca6505c33
commit 6ae3a6cc7d
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 {
}