More CCinematicCamera imps

Former-commit-id: 11f243614b
This commit is contained in:
2022-11-16 12:02:20 -08:00
parent 68f99e4072
commit f68f6e6f49
11 changed files with 76 additions and 15 deletions

View File

@@ -46,6 +46,7 @@ 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; }