mirror of https://github.com/AxioDL/metaforce.git
10 lines
188 B
C++
10 lines
188 B
C++
|
#include "CPASAnimInfo.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
|
||
|
CPASAnimInfo::CPASAnimInfo(u32 id, rstl::reserved_vector<CPASAnimParm::UParmValue, 8>&& parms)
|
||
|
: x0_id(id), x4_parms(std::move(parms)) {}
|
||
|
|
||
|
}
|