2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 01:11:20 +00:00
metaforce/Runtime/Character/CSegIdList.hpp

21 lines
334 B
C++

#ifndef __PSHAG_CSEGIDLIST_HPP__
#define __PSHAG_CSEGIDLIST_HPP__
#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;}
};
}
#endif // __PSHAG_CSEGIDLIST_HPP__