mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 06:47:45 +00:00
Merge pull request #167 from perize/master
Add a struct def of job gauge
This commit is contained in:
commit
974a682b8a
2 changed files with 7 additions and 0 deletions
|
@ -134,6 +134,7 @@ namespace Packets {
|
||||||
IPCTYPE_UNK_320 = 0x0207, // updated 4.1
|
IPCTYPE_UNK_320 = 0x0207, // updated 4.1
|
||||||
IPCTYPE_UNK_322 = 0x0209, // updated 4.1
|
IPCTYPE_UNK_322 = 0x0209, // updated 4.1
|
||||||
|
|
||||||
|
ActorGauge = 0x249
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO: Include structures for the individual packet segment types
|
// TODO: Include structures for the individual packet segment types
|
||||||
|
|
|
@ -1314,6 +1314,12 @@ struct FFXIVIpcMount : FFXIVIpcBasePacket<Mount>
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
struct FFXIVIpcActorGauge : FFXIVIpcBasePacket<ActorGauge>
|
||||||
|
{
|
||||||
|
uint8_t classJobId;
|
||||||
|
uint8_t data[15]; // depends on classJobId
|
||||||
|
};
|
||||||
|
|
||||||
} /* Server */
|
} /* Server */
|
||||||
} /* Packets */
|
} /* Packets */
|
||||||
} /* Network */
|
} /* Network */
|
||||||
|
|
Loading…
Add table
Reference in a new issue