]> git.tdb.fi Git - r2c2.git/blob - source/engineer/options.h
Major architecture rework
[r2c2.git] / source / engineer / options.h
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2010  Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #ifndef OPTIONS_H_
9 #define OPTIONS_H_
10
11 #include <string>
12
13 struct Options
14 {
15         unsigned screen_w;
16         unsigned screen_h;
17         bool fullscreen;
18         bool debug;
19         std::string driver;
20         bool network;
21         bool simulate;
22         std::string layout_fn;
23
24         Options(int, char **);
25 };
26
27 #endif