Add RstlExtras

Former-commit-id: b2a9c6a8f3
This commit is contained in:
2023-01-12 14:46:08 -08:00
parent fd5f4fa193
commit f5a0721ec0
22 changed files with 187 additions and 63 deletions

View File

@@ -8,7 +8,7 @@
class CSegId {
public:
CSegId() : x0_id(-1) {}
CSegId(CInputStream& in) : x0_id(in.Get<uint>()) {}
CSegId(CInputStream& in) : x0_id(in.ReadInt32()) {}
private:
uchar x0_id;
};