10 lines
200 B
C#
10 lines
200 B
C#
using mROA.Implementation.Attributes;
|
|
|
|
namespace mROA.Implementation
|
|
{
|
|
public interface INetworkMessage
|
|
{
|
|
[SerializationIgnore]
|
|
public EMessageType MessageType { get; }
|
|
}
|
|
} |