mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-15 08:05:06 +00:00
13 lines
No EOL
284 B
C#
13 lines
No EOL
284 B
C#
namespace Shared.Packet.Packets;
|
|
|
|
[Packet(PacketType.Command)]
|
|
public struct CommandPacket : IPacket {
|
|
//todo: implement something for this
|
|
public void Serialize(Span<byte> data) {
|
|
|
|
}
|
|
|
|
public void Deserialize(Span<byte> data) {
|
|
|
|
}
|
|
} |