Add CWeaponMgr

Former-commit-id: 28983db847
This commit is contained in:
Henrique Gemignani Passos Lima
2022-11-10 04:06:24 +02:00
parent a6ee5c2836
commit c3e6ee87e3
7 changed files with 126 additions and 8 deletions

View File

@@ -53,7 +53,7 @@ struct TUniqueId {
bool operator==(const TUniqueId& other) const { return value == other.value; }
bool operator!=(const TUniqueId& other) const { return value != other.value; }
bool operator<(const TUniqueId& other) const; // TODO
bool operator<(const TUniqueId& other) const { return value < other.value; }
private:
};