Added documentation for PlotWeather

This commit is contained in:
Matt 2023-09-12 21:13:04 -04:00
parent 764156b267
commit d3dab0d736
1 changed files with 19 additions and 0 deletions

View File

@ -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
}