0
0
Fork 0
mirror of https://github.com/Sanae6/SmoOnlineServer.git synced 2024-11-15 16:15:06 +00:00
SmoOnlineServer/Shared/Packet/Packets/ShinePacket.cs

18 lines
No EOL
398 B
C#

using System.Runtime.InteropServices;
namespace Shared.Packet.Packets;
[Packet(PacketType.Shine)]
public struct ShinePacket : IPacket {
public int ShineId;
public short Size => 4;
public void Serialize(Span<byte> data) {
MemoryMarshal.Write(data, ref ShineId);
}
public void Deserialize(Span<byte> data) {
ShineId = MemoryMarshal.Read<int>(data);
}
}