e1735453bf9ea5d14d6833ff33a193ed932bfc3f
[laserbrain_demo] / src / opt.h
1 #ifndef OPT_H_
2 #define OPT_H_
3
4 struct Options {
5         int width, height;
6         bool vr;
7         bool fullscreen;
8         const char *scenefile;
9 };
10
11 extern Options opt, def_opt;
12
13 bool init_options(int argc, char **argv, const char *cfgfile);
14
15 #endif  // OPT_H_