diff options
Diffstat (limited to 'src/Settings.hpp')
-rw-r--r-- | src/Settings.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Settings.hpp b/src/Settings.hpp new file mode 100644 index 0000000..194e736 --- /dev/null +++ b/src/Settings.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include <string> + +namespace Settings { + void Load(); + + void Save(); + + std::string Read(const std::string &key, const std::string &defaultValue); + + void Write(const std::string &key, const std::string &value); +}
\ No newline at end of file |