continuity/Server.Packets/IPacket.cs

7 lines
120 B
C#
Raw Normal View History

2022-12-29 10:23:24 +00:00
namespace Server.Packets;
public interface IPacket
{
Span<Byte> Serialize();
void Deserialize(Span<Byte> bytes);
}