blob: b63ae06f59d7a81d2ef4844b55aff3a7e6a19215 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef CONFIG_H
#define CONFIG_H
#include <iostream>
#include <SDL2/SDL_mixer.h>
#include <tinyxml2.h>
void readConfig();
void updateConfig();
void saveConfig();
#endif //CONFIG_H
|