mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 14:31:20 +00:00
17 lines
260 B
C++
17 lines
260 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; }
|
|
};
|
|
|
|
} // namespace urde
|