quantum-space-buddies/QSB/MessageType.cs
2020-02-13 21:23:12 +01:00

10 lines
283 B
C#

using UnityEngine.Networking;
namespace QSB {
public class MessageType: MsgType {
public const short Sector = MsgType.Highest + 1;
public const short ChatMessage = MsgType.Highest + 2;
// Add other message types here, incrementing the number.
}
}