diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-06-01 10:23:12 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-06-01 10:23:12 -0400 |
commit | f53e2491bfe41cea6e912bef1692c2961927ef23 (patch) | |
tree | 912a810c9ad1c808fb93121ceb32f0e462ffcfc5 /include/union_room.h | |
parent | 4fe507e4539f2c349a7297c31f66893bbf775ff5 (diff) |
Document union_room_player_avatar.c
Diffstat (limited to 'include/union_room.h')
-rw-r--r-- | include/union_room.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/include/union_room.h b/include/union_room.h index 0f0075344..4cdb17662 100644 --- a/include/union_room.h +++ b/include/union_room.h @@ -2,6 +2,7 @@ #define GUARD_UNION_ROOM_H #include "link_rfu.h" +#include "constants/union_room.h" // Exported type declarations @@ -31,7 +32,7 @@ struct UnkStruct_x20 // WirelessLink_Member? struct UnkStruct_Main0 { - struct UnkStruct_x20 arr[8]; + struct UnkStruct_x20 arr[MAX_UNION_ROOM_PLAYERS]; }; struct UnkStruct_Main4 @@ -85,12 +86,12 @@ struct WirelessLink_Group u8 delayBeforePrint; }; -struct UnkStruct_8019BA8 +struct UnionRoomObject { - u8 field_0; - u8 field_1; - s8 field_2; - u8 field_3; + u8 state; + u8 gfxId; + s8 animState; + u8 schedAnim; }; struct WirelessLink_URoom @@ -121,7 +122,7 @@ struct WirelessLink_URoom u8 activityRequestStrbufs[4][16]; u16 partnerYesNoResponse; u16 recvActivityRequest[3]; - struct UnkStruct_8019BA8 field_A0[8]; + struct UnionRoomObject objects[MAX_UNION_ROOM_PLAYERS]; u8 field_C0[12][15]; u8 field_174[48]; u8 field_1A4[200]; |