mirror of https://github.com/PrimeDecomp/prime.git
16 lines
255 B
C++
16 lines
255 B
C++
|
#ifndef _CSEGIDLIST
|
||
|
#define _CSEGIDLIST
|
||
|
|
||
|
#include "Kyoto/Animation/CSegId.hpp"
|
||
|
#include "rstl/vector.hpp"
|
||
|
|
||
|
class CInputStream;
|
||
|
class CSegIdList {
|
||
|
public:
|
||
|
CSegIdList(CInputStream& in);
|
||
|
public:
|
||
|
rstl::vector<CSegId> x0_segList;
|
||
|
};
|
||
|
|
||
|
#endif // _CSEGIDLIST
|