1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 14:57:44 +00:00

Add a struct def of job gauge

This commit is contained in:
Perize 2017-11-06 23:41:04 +09:00
parent e27b348971
commit ddbdf5a409
2 changed files with 7 additions and 0 deletions

View file

@ -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

View file

@ -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 */