mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-05 16:49:39 +00:00
Added Weather and WeatherStorm
This commit is contained in:
parent
cfb241f275
commit
bc7d54dda4
2 changed files with 18 additions and 0 deletions
9
src/main/java/org/bukkit/entity/Weather.java
Normal file
9
src/main/java/org/bukkit/entity/Weather.java
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
package org.bukkit.entity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a Weather related entity, such as a storm
|
||||||
|
*/
|
||||||
|
public interface Weather extends Entity {
|
||||||
|
|
||||||
|
}
|
9
src/main/java/org/bukkit/entity/WeatherStorm.java
Normal file
9
src/main/java/org/bukkit/entity/WeatherStorm.java
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
package org.bukkit.entity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an instance of a weather storm entity
|
||||||
|
*/
|
||||||
|
public interface WeatherStorm extends Weather {
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue