mirror of
https://github.com/MrOkiDoki/BattleBit-Community-Server-API.git
synced 2025-01-10 03:37:30 -03:00
12 lines
204 B
C#
12 lines
204 B
C#
namespace BattleBitAPI.Common
|
|
{
|
|
public enum MapSize : byte
|
|
{
|
|
None = 0,
|
|
_8v8=8,
|
|
_16vs16 = 16,
|
|
_32vs32 = 32,
|
|
_64vs64 = 64,
|
|
_127vs127 = 90,
|
|
}
|
|
}
|