mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-21 18:40:03 +00:00
10 lines
283 B
C#
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.
|
|
}
|
|
}
|