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