mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 00:31:21 +00:00
15 lines
242 B
C++
15 lines
242 B
C++
#include "CSkinBank.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CSkinBank::CSkinBank(CInputStream& in)
|
|
{
|
|
u32 boneCount = in.readUint32Big();
|
|
x0_segments.reserve(boneCount);
|
|
for (u32 i=0 ; i<boneCount ; ++i)
|
|
x0_segments.emplace_back(in);
|
|
}
|
|
|
|
}
|