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