mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-05 15:13:27 +00:00
20 lines
269 B
C++
20 lines
269 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);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __PSHAG_CSEGIDLIST_HPP__
|