1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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