dungeon_crawler
view prototype/src/cfg.h @ 62:f71381c9e245
gamo to xristo
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 25 Sep 2012 06:59:11 +0300 |
parents | d52711f2b9a1 |
children |
line source
1 #ifndef CFG_H_
2 #define CFG_H_
6 extern class Config {
7 public:
8 int width, height;
9 bool stereo;
10 bool sound;
11 const char *level_file, *tileset_file;
13 enum class Renderer { any, mrt, multipass, fwd } rend;
15 Config();
17 bool parse_args(int argc, char **argv);
18 } cfg;
20 #endif // CFG_H_