dungeon_crawler

view prototype/src/cfg.h @ 48:aa9e28670ae2

added sound playback, more to do
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 17 Sep 2012 08:40:59 +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_