]> git.tdb.fi Git - r2c2.git/blobdiff - source/engineer/options.h
Major architecture rework
[r2c2.git] / source / engineer / options.h
diff --git a/source/engineer/options.h b/source/engineer/options.h
new file mode 100644 (file)
index 0000000..e842c25
--- /dev/null
@@ -0,0 +1,27 @@
+/* $Id$
+
+This file is part of the MSP Märklin suite
+Copyright © 2010  Mikkosoft Productions, Mikko Rasa
+Distributed under the GPL
+*/
+
+#ifndef OPTIONS_H_
+#define OPTIONS_H_
+
+#include <string>
+
+struct Options
+{
+       unsigned screen_w;
+       unsigned screen_h;
+       bool fullscreen;
+       bool debug;
+       std::string driver;
+       bool network;
+       bool simulate;
+       std::string layout_fn;
+
+       Options(int, char **);
+};
+
+#endif