Initial commit
This commit is contained in:
28
PkmnLib.Static/TimeOfDay.cs
Normal file
28
PkmnLib.Static/TimeOfDay.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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,
|
||||
}
|
||||
Reference in New Issue
Block a user