IGamePacket.cs 93 B

12345
  1. public interface IGamePacket
  2. {
  3. byte[] Serialize();
  4. void Deserialize(byte[] bytes);
  5. }