dungeon_crawler

view prototype/src/cfg.h @ 18:5c41e6fcb300

- commandline arguments - stereoscopic rendering - FBO fixed
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 21 Aug 2012 03:17:48 +0300
parents
children 6d71dd4760f9
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;
10 Config();
12 bool parse_args(int argc, char **argv);
13 } cfg;
15 #endif // CFG_H_