diff options
| author | theo3 <arisstephenson2@gmail.com> | 2023-12-28 19:05:06 -0800 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2023-12-28 19:05:06 -0800 |
| commit | a030120a0c3b65cd1a35ec83644edca6985e5346 (patch) | |
| tree | e62d4aa047ff662b6e41ce0744f1e39fab9291e1 /include/object | |
| parent | 7c1c612c9ba95b47f33cfd217ab99c4c9102531e (diff) | |
clean up linkAnimation.c
Diffstat (limited to 'include/object')
| -rw-r--r-- | include/object/linkAnimation.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/object/linkAnimation.h b/include/object/linkAnimation.h new file mode 100644 index 00000000..9fb2fad4 --- /dev/null +++ b/include/object/linkAnimation.h @@ -0,0 +1,23 @@ +#ifndef LINKANIMATION_H +#define LINKANIMATION_H + +#ifndef NENT_DEPRECATED +#error "linkAnimtion.h requires new entities" +#endif +#include "entity.h" + +typedef struct { + /*0x00*/ Entity base; + /*0x68*/ u8 storeDrawFlags; + /*0x69*/ u8 storeFlags; + /*0x6a*/ u8 storeIFrames; + /*0x6b*/ u8 storeField7; + /*0x6c*/ u8 storeKeepFacing; + /*0x6d*/ u8 storeFieldA; + /*0x6e*/ u8 storeField27; + /*0x6f*/ u8 storeMobility; + /*0x70*/ u32 storeStateFlags; + /*0x74*/ u8 store8A; +} LinkAnimationEntity; + +#endif // LINKANIMATION_H |
