7 lines
120 B
C#
7 lines
120 B
C#
|
namespace Server.Packets;
|
|||
|
|
|||
|
public interface IPacket
|
|||
|
{
|
|||
|
Span<Byte> Serialize();
|
|||
|
void Deserialize(Span<Byte> bytes);
|
|||
|
}
|