mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 05:07:43 +00:00
Several initial character classes
This commit is contained in:
22
Runtime/Character/CPASAnimInfo.hpp
Normal file
22
Runtime/Character/CPASAnimInfo.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef __PSHAG_CPASANIMINFO_HPP__
|
||||
#define __PSHAG_CPASANIMINFO_HPP__
|
||||
|
||||
#include "IOStreams.hpp"
|
||||
#include "rstl.hpp"
|
||||
#include "CPASAnimParm.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CPASAnimInfo
|
||||
{
|
||||
u32 x0_id;
|
||||
rstl::reserved_vector<CPASAnimParm::UParmValue, 8> x4_parms;
|
||||
public:
|
||||
CPASAnimInfo(u32 id, rstl::reserved_vector<CPASAnimParm::UParmValue, 8>&& parms);
|
||||
u32 GetId() const {return x0_id;}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __PSHAG_CPASANIMINFO_HPP__
|
||||
Reference in New Issue
Block a user