Continue work on CActor::UpdateAnimation; lots of headers n stuff

This commit is contained in:
2022-08-14 14:38:41 -04:00
parent 7c92358bf6
commit 85284f7640
43 changed files with 1190 additions and 148 deletions

View File

@@ -0,0 +1,17 @@
#ifndef _CPASDATABASE_HPP
#define _CPASDATABASE_HPP
#include "types.h"
#include "MetroidPrime/CPASAnimState.hpp"
#include "rstl/vector.hpp"
class CPASDatabase {
private:
rstl::vector< CPASAnimState > x0_states;
s32 x10_defaultState;
};
CHECK_SIZEOF(CPASDatabase, 0x14)
#endif