feat: spawner weights

This commit is contained in:
David Markowitz
2026-06-19 18:42:34 -07:00
parent 308412f46e
commit a720895bee
5 changed files with 93 additions and 53 deletions

View File

@@ -289,6 +289,14 @@ struct LwoNameValue {
this->Erase(GeneralUtils::ASCIIToUTF16(key));
}
ValueType::iterator find(const ValueType::key_type& key) {
return this->values.find(key);
}
ValueType::const_iterator find(const ValueType::key_type& key) const {
return this->values.find(key);
}
LwoNameValue() = default;
LwoNameValue(const LwoNameValue& other) {