mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-22 03:05:16 +00:00
10 lines
No EOL
217 B
C#
10 lines
No EOL
217 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Shared.Packet;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct PacketHeader {
|
|
public Guid Id;
|
|
public PacketType Type;
|
|
public PacketSender Sender;
|
|
} |