BattleBit-Community-Server-API/BattleBitAPI/Common/Enums/MapDayNight.cs
2023-07-30 19:31:06 +03:00

8 lines
120 B
C#

namespace BattleBitAPI.Common
{
public enum MapDayNight : byte
{
Day = 0,
Night = 1,
}
}