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

14 lines
197 B
C#
Raw Normal View History

2023-03-03 09:15:17 -03:00
namespace BattleBitAPI.Networking
{
public enum NetworkCommuncation : byte
{
//Do not use
None = 0,
2023-03-03 09:15:17 -03:00
Hail = 1,
Accepted = 2,
Denied = 3,
2023-03-03 09:15:17 -03:00
}
}