namespace StardustCore.Enums
{
/// A custom class used to wrap Stardew Valley's weather conventions.
public class Weather
{
/// An enum used as the same position as Stardew Valley's weather index.
public enum weather
{
sunny,
rainy,
lightning,
debris,
festival,
snow,
wedding
}
}
}