Match and link CScriptRelay

Former-commit-id: 2c7dcd7665
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-16 16:59:20 +03:00
parent e8997a3d63
commit b4897e53be
8 changed files with 98 additions and 11 deletions

View File

@@ -47,6 +47,7 @@ struct TUniqueId {
ushort value;
TUniqueId(ushort version, ushort id) : value(((version & 0x3F) << 10) | (id & 0x3FF)) {}
ushort Value() const { return value & 0x3FF; }
ushort Version() const { return (value >> 10) & 0x3F; }