PkmnLib.NET/PkmnLib.Static/TimeOfDay.cs

28 lines
547 B
C#
Raw Normal View History

2024-07-20 11:51:52 +00:00
namespace PkmnLib.Static;
/// <summary>
/// The time of day. These values are the 4 different groups of time of day in Pokemon games since
/// gen 5. The exact times these correspond to differ between games.
/// </summary>
public enum TimeOfDay : byte
{
/// <summary>
/// The morning.
/// </summary>
Morning = 0,
/// <summary>
/// The day.
/// </summary>
Day = 1,
/// <summary>
/// The evening.
/// </summary>
Evening = 2,
/// <summary>
/// The night.
/// </summary>
Night = 3,
}