2018-03-30 20:46:24 +08:00
|
|
|
namespace StardustCore.Enums
|
|
|
|
{
|
2018-12-30 18:00:05 +08:00
|
|
|
/// <summary>A custom class used to wrap Stardew Valley's weather conventions.</summary>
|
2018-03-30 20:46:24 +08:00
|
|
|
public class Weather
|
|
|
|
{
|
2018-12-30 18:00:05 +08:00
|
|
|
/// <summary>An enum used as the same position as Stardew Valley's weather index.</summary>
|
2018-03-30 20:46:24 +08:00
|
|
|
public enum weather
|
|
|
|
{
|
|
|
|
sunny,
|
|
|
|
rainy,
|
|
|
|
lightning,
|
|
|
|
debris,
|
|
|
|
festival,
|
|
|
|
snow,
|
|
|
|
wedding
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|