diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-03-15 17:01:16 -0300 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-03-15 17:03:28 -0300 |
commit | f43225daeb23e17120d35eb610593475daaeb01e (patch) | |
tree | 8a119bbea9fcd862726d5e4a6157d59b3a808bbe | |
parent | eaea67f74ecbec186a12a819c3f000631346208c (diff) |
context: Add missing definition of `game_command_union`
oof, copy-paste mistake.
-rw-r--r-- | context.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -806,6 +806,13 @@ union ipv4_addr { u8 addr_bytes[4]; }; +// pso/packet_classes.h +union game_command_union { + struct game_command game_cmd; + struct extended_game_command ext_game_cmd; + u8 bytes[1024]; +}; + // pso/TObject.h // Enum defs. enum object_flags { |