mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 15:53:19 +00:00
d7c0c06698
* refactoring
10 lines
182 B
C#
10 lines
182 B
C#
using UnityEngine.Networking;
|
|
|
|
namespace QSB.Messaging
|
|
{
|
|
public abstract class QSBMessage : MessageBase
|
|
{
|
|
public abstract MessageType MessageType { get; }
|
|
}
|
|
}
|