continuity/Server/Packets/IPacket.cs

8 lines
132 B
C#
Raw Normal View History

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