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