BattleBit-Community-Server-API/BattleBitAPI/Common/Enums/MapSize.cs

13 lines
204 B
C#

namespace BattleBitAPI.Common
{
public enum MapSize : byte
{
None = 0,
_8v8=8,
_16vs16 = 16,
_32vs32 = 32,
_64vs64 = 64,
_127vs127 = 90,
}
}