mirror of
https://github.com/electronicarts/CNC_TS_and_RA2_Mission_Editor.git
synced 2025-05-01 01:21:41 -04:00
++ team types .
This commit is contained in:
parent
da6f42f3e1
commit
29f30ca599
2 changed files with 281 additions and 282 deletions
|
@ -146,6 +146,10 @@ public:
|
|||
this->SetString(key, INIHelper::ToString(val));
|
||||
}
|
||||
|
||||
void SetBool(const CString& key, const bool val) {
|
||||
this->SetString(key, INIHelper::ToString(val));
|
||||
}
|
||||
|
||||
void Insert(const CString& key, const CString& value) {
|
||||
this->Insert(key, CString(value));
|
||||
}
|
||||
|
@ -178,7 +182,9 @@ public:
|
|||
|
||||
void RemoveValue(const CString& val) {
|
||||
auto const idx = this->FindValue(val);
|
||||
RemoveAt(idx);
|
||||
if (idx >= 0) {
|
||||
RemoveAt(idx);
|
||||
}
|
||||
}
|
||||
|
||||
auto begin() const noexcept
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue