mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-23 21:27:45 +00:00
27 lines
516 B
C
27 lines
516 B
C
![]() |
#ifndef _CORE_NETWORK_PACKETS_ZONE_CLIENT_IPC_H
|
||
|
#define _CORE_NETWORK_PACKETS_ZONE_CLIENT_IPC_H
|
||
|
|
||
|
#include <Common.h>
|
||
|
#include <Network/CommonNetwork.h>
|
||
|
|
||
|
namespace Core {
|
||
|
namespace Network {
|
||
|
namespace Packets {
|
||
|
namespace Client {
|
||
|
|
||
|
struct FFXIVIpcGmCommand1 : FFXIVIpcBasePacket< GMCommand1 >
|
||
|
{
|
||
|
/* 0000 */ uint32_t commandId;
|
||
|
/* 0004 */ uint32_t param1;
|
||
|
/* 0008 */ uint32_t param2;
|
||
|
/* 000C */ char unknown_C[28];
|
||
|
/* 0028 */ uint32_t param3;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif //_CORE_NETWORK_PACKETS_ZONE_CLIENT_IPC_H
|