Match but don't link CSegIdList (rstl::vector inlining)

Former-commit-id: dc69b9f2fd
This commit is contained in:
2022-10-14 22:22:32 -07:00
parent 9a35941d7c
commit ff2b38dc53
11 changed files with 105 additions and 47 deletions

View File

@@ -0,0 +1,15 @@
#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