30 lines
629 B
C#
30 lines
629 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StardustCore.Enums
|
|
{
|
|
/// <summary>
|
|
/// A custom class used to wrap Stardew Valley's weather conventions.
|
|
/// </summary>
|
|
public class Weather
|
|
{
|
|
/// <summary>
|
|
/// An enum used as the same position as Stardew Valley's weather index.
|
|
/// </summary>
|
|
public enum weather
|
|
{
|
|
sunny,
|
|
rainy,
|
|
lightning,
|
|
debris,
|
|
festival,
|
|
snow,
|
|
wedding
|
|
|
|
}
|
|
}
|
|
}
|