From e9904604ce0199d696c4941dff4f5ad84d22355f Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Mon, 6 Aug 2018 20:04:50 +0500 Subject: Implemented Settings Manager --- src/Settings.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/Settings.hpp (limited to 'src/Settings.hpp') 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 + +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 -- cgit v1.2.3