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