7 lines
No EOL
132 B
C#
7 lines
No EOL
132 B
C#
namespace Server.Packets;
|
|
|
|
public interface IPacket
|
|
{
|
|
public void Deserialize( byte[] data);
|
|
public byte[] Serialize();
|
|
} |