2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 09:51:20 +00:00
metaforce/Runtime/Character/CSegIdList.hpp
2018-10-06 17:42:33 -10:00

19 lines
246 B
C++

#pragma once
#include "IOStreams.hpp"
#include "CSegId.hpp"
namespace urde
{
class CSegIdList
{
std::vector<CSegId> x0_list;
public:
CSegIdList(CInputStream& in);
const std::vector<CSegId>& GetList() const {return x0_list;}
};
}