metaforce/Runtime/Character/CSegIdList.hpp

21 lines
331 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CSEGIDLIST_HPP__
#define __URDE_CSEGIDLIST_HPP__
2016-04-09 23:19:17 +00:00
#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;}
2016-04-09 23:19:17 +00:00
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CSEGIDLIST_HPP__