mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-15 08:05:06 +00:00
8 lines
No EOL
208 B
C#
8 lines
No EOL
208 B
C#
namespace Shared.Packet.Packets;
|
|
|
|
// Packet interface for type safety
|
|
public interface IPacket {
|
|
short Size { get; }
|
|
void Serialize(Span<byte> data);
|
|
void Deserialize(Span<byte> data);
|
|
} |