mirror of
https://github.com/MrOkiDoki/BattleBit-Community-Server-API.git
synced 2025-01-25 02:33:08 -03:00
9 lines
133 B
C#
9 lines
133 B
C#
namespace BattleBitAPI.Common
|
|
{
|
|
public enum Team : byte
|
|
{
|
|
TeamA = 0,
|
|
TeamB = 1,
|
|
None = 2
|
|
}
|
|
}
|