dungeon_crawler

view prototype/src/cfg.h @ 42:6d71dd4760f9

added flag to force the use of the fallback renderer
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 30 Aug 2012 05:38:03 +0300
parents 5c41e6fcb300
children d52711f2b9a1
line source
1 #ifndef CFG_H_
2 #define CFG_H_
4 extern class Config {
5 public:
6 int width, height;
7 bool stereo;
8 const char *level_file, *tileset_file;
9 bool use_deferred;
11 Config();
13 bool parse_args(int argc, char **argv);
14 } cfg;
16 #endif // CFG_H_