dungeon_crawler

view prototype/src/cfg.h @ 47:d52711f2b9a1

started writting audio code
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 16 Sep 2012 08:16:50 +0300
parents 6d71dd4760f9
children aa86119e3295
line source
1 #ifndef CFG_H_
2 #define CFG_H_
4 extern class Config {
5 public:
6 int width, height;
7 bool stereo;
8 bool sound;
9 const char *level_file, *tileset_file;
10 bool use_deferred;
12 Config();
14 bool parse_args(int argc, char **argv);
15 } cfg;
17 #endif // CFG_H_