df7ef300feaa9e98e8a3859a7bac01b3d45685d5
[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         bool music;
10         bool reflect;
11 };
12
13 extern Options opt, def_opt;
14
15 bool init_options(int argc, char **argv, const char *cfgfile);
16
17 #endif  // OPT_H_