mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
Added documentation for PlotWeather
This commit is contained in:
parent
764156b267
commit
d3dab0d736
@ -18,9 +18,28 @@
|
|||||||
*/
|
*/
|
||||||
package com.plotsquared.core.plot;
|
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 {
|
public enum PlotWeather {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rainy weather conditions
|
||||||
|
*/
|
||||||
RAIN,
|
RAIN,
|
||||||
|
/**
|
||||||
|
* Clear weather conditions
|
||||||
|
*/
|
||||||
CLEAR,
|
CLEAR,
|
||||||
|
/**
|
||||||
|
* Use the weather of the world the plot is in
|
||||||
|
*/
|
||||||
WORLD,
|
WORLD,
|
||||||
|
/**
|
||||||
|
* Turn off weather for the plot
|
||||||
|
*/
|
||||||
OFF
|
OFF
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user