mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 06:27:43 +00:00
Several initial character classes
This commit is contained in:
24
Runtime/Character/CPASAnimState.hpp
Normal file
24
Runtime/Character/CPASAnimState.hpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef __PSHAG_CPASANIMSTATE_HPP__
|
||||
#define __PSHAG_CPASANIMSTATE_HPP__
|
||||
|
||||
#include "IOStreams.hpp"
|
||||
#include "CPASParmInfo.hpp"
|
||||
#include "CPASAnimInfo.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CPASAnimState
|
||||
{
|
||||
u32 x0_id;
|
||||
std::vector<CPASParmInfo> x4_parms;
|
||||
std::vector<CPASAnimInfo> x14_anims;
|
||||
std::vector<u32> x24_;
|
||||
public:
|
||||
CPASAnimState(CInputStream& in);
|
||||
u32 GetId() const {return x0_id;}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __PSHAG_CPASANIMSTATE_HPP__
|
||||
Reference in New Issue
Block a user