mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 20:27:47 +00:00
15 lines
363 B
C#
15 lines
363 B
C#
using FFXIVClassic.Common;
|
|
|
|
namespace FFXIVClassic_Map_Server.packets.send
|
|
{
|
|
class LogoutPacket
|
|
{
|
|
public const ushort OPCODE = 0x000E;
|
|
public const uint PACKET_SIZE = 0x28;
|
|
|
|
public static SubPacket BuildPacket(uint playerActorID)
|
|
{
|
|
return new SubPacket(OPCODE, playerActorID, new byte[8]);
|
|
}
|
|
}
|
|
}
|