24 lines
392 B
C#
24 lines
392 B
C#
|
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
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|