dungeon_crawler

view prototype/src/cfg.h @ 25:527fede30057

- fixed sphere rendering (PointLight::draw) - added config argument options - fixed macosx compilation
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 25 Aug 2012 02:16:08 +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_