metaforce/Runtime/Character/CSegIdList.cpp

13 lines
258 B
C++
Raw Normal View History

#include "Runtime/Character/CSegIdList.hpp"
2016-04-09 16:19:17 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-04-09 16:19:17 -07:00
2018-12-07 21:30:43 -08:00
CSegIdList::CSegIdList(CInputStream& in) {
u32 count = in.ReadLong();
2018-12-07 21:30:43 -08:00
x0_list.reserve(count);
for (u32 i = 0; i < count; ++i)
x0_list.emplace_back(in);
2016-04-09 16:19:17 -07:00
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce