PkmnLibSharp/PkmnLibSharp/Generated/Pkmnlib/TimeOfDay.cs

15 lines
290 B
C#
Raw Normal View History

2020-05-03 09:38:49 +00:00
// AUTOMATICALLY GENERATED, DO NOT EDIT
2020-05-02 17:54:07 +00:00
using System.Diagnostics.CodeAnalysis;
namespace Pkmnlib
{
[SuppressMessage("ReSharper", "InconsistentNaming")]
internal enum TimeOfDay : byte
2020-05-02 17:54:07 +00:00
{
Night = 0,
Morning = 1,
Afternoon = 2,
Evening = 3,
}
}