Match & link CFlaahgraPlants

Former-commit-id: e662d05247
This commit is contained in:
2022-11-25 23:02:24 -05:00
parent 234482d8de
commit a8c486425d
11 changed files with 216 additions and 13 deletions

View File

@@ -46,7 +46,6 @@ CHECK_SIZEOF(TEditorId, 0x4)
struct TUniqueId {
ushort value;
//TUniqueId(const TUniqueId& other) : value(other.value) {}
TUniqueId(ushort version, ushort id) : value(((version & 0x3F) << 10) | (id & 0x3FF)) {}
ushort Value() const { return value & 0x3FF; }