VR mode
[laserbrain_demo] / src / opt.h
diff --git a/src/opt.h b/src/opt.h
new file mode 100644 (file)
index 0000000..176dd61
--- /dev/null
+++ b/src/opt.h
@@ -0,0 +1,14 @@
+#ifndef OPT_H_
+#define OPT_H_
+
+struct Options {
+       int width, height;
+       bool vr;
+       bool fullscreen;
+};
+
+extern Options opt, def_opt;
+
+bool init_options(int argc, char **argv, const char *cfgfile);
+
+#endif // OPT_H_