continuity/Server/Packets/IPacket.cs

7 lines
132 B
C#
Raw Normal View History

2023-08-10 10:47:35 +02:00
namespace Server.Packets;
2023-08-09 20:14:14 +02:00
public interface IPacket
{
public void Deserialize( byte[] data);
public byte[] Serialize();
}