typesforbukkit
Version:
Types For Bukkit
12 lines (10 loc) • 363 B
text/typescript
// API Link: https://tfb.neocities.org/1.16.5/org/bukkit/WeatherType
namespace org.bukkit {
/** @description An enum of all current weather types */
export enum WeatherType {
/** @description Clear weather, clouds but no rain */
CLEAR,
/** @description Raining or snowing depending on biome */
DOWNFALL
}
}