mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-17 05:03:55 -07:00
Added Weather and WeatherStorm
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
9
paper-api/src/main/java/org/bukkit/entity/Weather.java
Normal file
9
paper-api/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 {
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
package org.bukkit.entity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an instance of a weather storm entity
|
||||||
|
*/
|
||||||
|
public interface WeatherStorm extends Weather {
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user