Match and link CScriptPlayerHint

This commit is contained in:
Henrique Gemignani Passos Lima
2022-11-04 00:05:21 +02:00
parent 6ea05616bc
commit 7f414d1d5e
8 changed files with 168 additions and 11 deletions

View File

@@ -81,6 +81,13 @@ public:
--x0_count;
}
}
iterator find(const T& value) {
rstl::reserved_vector< TUniqueId, 8 >::iterator it = begin();
for (; it != end() && *it != value; ++it) {
}
return it;
}
};
} // namespace rstl