Stardew_Valley_Mods/GeneralMods/StardustCore/Enums/Weather.cs

24 lines
392 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StardustCore.Enums
{
public class Weather
{
public enum weather
{
sunny,
rainy,
lightning,
debris,
festival,
snow,
wedding
}
}
}