Currently the reader/writer doesn't support bool so we can't generate packets with boolean fields. Would be a little more ergonomic rather than using int8_t. This packet:
<packet ePacketType = "PAKWC_NPC_SHOW">
<element name = "id" type = "uint16_t" />
<element name = "show" type = "bool" />
</packet>
Generates a compiler error
error: ‘class RoseCommon::CRoseReader’ has no member named ‘get_bool’
Currently the reader/writer doesn't support bool so we can't generate packets with boolean fields. Would be a little more ergonomic rather than using
int8_t. This packet:Generates a compiler error