dungeon_crawler

view prototype/src/cfg.h @ 53:1ea56011c1ff

stuff + streaming start
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 19 Sep 2012 01:08:41 +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_