9 lines
197 B
C#
9 lines
197 B
C#
|
namespace FlyingWormConsole3.LiteNetLib.Utils
|
|||
|
{
|
|||
|
public interface INetSerializable
|
|||
|
{
|
|||
|
void Serialize(NetDataWriter writer);
|
|||
|
void Deserialize(NetDataReader reader);
|
|||
|
}
|
|||
|
}
|