mirror of
https://github.com/electronicarts/CNC_TS_and_RA2_Mission_Editor.git
synced 2025-04-30 09:01:41 -04:00
ini Nth modifiable version .
This commit is contained in:
parent
da8e436cd1
commit
770b1ac36a
1 changed files with 4 additions and 0 deletions
|
@ -77,6 +77,10 @@ public:
|
|||
ASSERT(index < value_pairs.size());
|
||||
return this->value_pairs[index];
|
||||
}
|
||||
auto& Nth(size_t index) {
|
||||
ASSERT(index < value_pairs.size());
|
||||
return this->value_pairs[index];
|
||||
}
|
||||
int64_t FindIndex(const CString& key) const noexcept;
|
||||
int64_t FindValue(CString val) const noexcept;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue