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 _CSEGID
#define _CSEGID
#include <types.h>
#include "Kyoto/Streams/CInputStream.hpp"
class CSegId {
public:
CSegId(CInputStream& in) : x0_id(in.Get<uint>()) {}
private:
uchar x0_id;
};
#endif // _CSEGID