BattleBit-Community-Server-API/BattleBitAPI/Networking/NetworkCommuncation.cs

14 lines
197 B
C#

namespace BattleBitAPI.Networking
{
public enum NetworkCommuncation : byte
{
//Do not use
None = 0,
Hail = 1,
Accepted = 2,
Denied = 3,
}
}