using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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
}
}
}