mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-14 15:45:07 +00:00
9 lines
No EOL
225 B
C#
9 lines
No EOL
225 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Shared.Packet.Packets;
|
|
|
|
// Packet interface for type safety
|
|
public interface IPacket {
|
|
void Serialize(Span<byte> data);
|
|
void Deserialize(Span<byte> data);
|
|
} |