mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
fb349c78c6
* just formatting * * moved message stuff to new project * generated .gitignore from https://gitignore.io/api/unity,visualstudio * fixed build event for message project
12 lines
243 B
C#
12 lines
243 B
C#
using UnityEngine.Networking;
|
|
|
|
namespace QSB.Messaging
|
|
{
|
|
public enum MessageType
|
|
{
|
|
Sector = MsgType.Highest + 1,
|
|
WakeUp = MsgType.Highest + 2,
|
|
// Add other message types here, incrementing the value.
|
|
}
|
|
}
|