metaforce/Runtime/Character/CSegIdList.hpp

19 lines
305 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-04-09 23:19:17 +00:00
#include <vector>
#include "Runtime/IOStreams.hpp"
#include "Runtime/Character/CSegId.hpp"
2016-04-09 23:19:17 +00:00
2018-12-08 05:30:43 +00:00
namespace urde {
class CSegIdList {
std::vector<CSegId> x0_list;
2016-04-09 23:19:17 +00:00
public:
2018-12-08 05:30:43 +00:00
CSegIdList(CInputStream& in);
const std::vector<CSegId>& GetList() const { return x0_list; }
2016-04-09 23:19:17 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde