INISettingsInterface: Add Save() method

This commit is contained in:
Connor McLaughlin
2020-04-11 00:00:21 +10:00
parent ebc3aa118c
commit 674bcdfeec
2 changed files with 12 additions and 5 deletions

View File

@ -9,6 +9,8 @@ public:
INISettingsInterface(std::string filename);
~INISettingsInterface();
void Save();
void Clear() override;
int GetIntValue(const char* section, const char* key, int default_value = 0) override;