diff options
Diffstat (limited to 'include/config.hpp')
-rw-r--r-- | include/config.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/config.hpp b/include/config.hpp new file mode 100644 index 0000000..d003c66 --- /dev/null +++ b/include/config.hpp @@ -0,0 +1,18 @@ +#ifndef CONFIG_H +#define CONFIG_H + +#include <iostream> + +#include <SDL2/SDL_mixer.h> + +#include <tinyxml2.h> +#include <ui.hpp> + + +namespace config { + void read( void ); + void update( void ); + void save( void ); +} + +#endif //CONFIG_H |