mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 11:45:19 +01:00
Added documentation for PlotWeather
This commit is contained in:
parent
764156b267
commit
d3dab0d736
@ -18,9 +18,28 @@
|
||||
*/
|
||||
package com.plotsquared.core.plot;
|
||||
|
||||
Used to specify the type of weather condition within the world.
|
||||
|
||||
|
||||
/**
|
||||
* The different types of weather that can be set for a Plot.
|
||||
*/
|
||||
public enum PlotWeather {
|
||||
|
||||
/**
|
||||
* Rainy weather conditions
|
||||
*/
|
||||
RAIN,
|
||||
/**
|
||||
* Clear weather conditions
|
||||
*/
|
||||
CLEAR,
|
||||
/**
|
||||
* Use the weather of the world the plot is in
|
||||
*/
|
||||
WORLD,
|
||||
/**
|
||||
* Turn off weather for the plot
|
||||
*/
|
||||
OFF
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user