mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-09 11:53:30 +00:00
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
|