]> git.tdb.fi Git - r2c2.git/blob - source/engineer/options.h
Rename the project to R²C²
[r2c2.git] / source / engineer / options.h
1 /* $Id$
2
3 This file is part of R²C²
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         std::string state_fn;
24
25         Options(int, char **);
26 };
27
28 #endif