]> git.tdb.fi Git - r2c2.git/blob - source/engineer/options.h
ddeb62e5232c6601f9faeb118499575593dbd8cb
[r2c2.git] / source / engineer / options.h
1 #ifndef OPTIONS_H_
2 #define OPTIONS_H_
3
4 #include <string>
5
6 struct Options
7 {
8         unsigned screen_w;
9         unsigned screen_h;
10         bool fullscreen;
11         bool debug;
12         std::string driver;
13         bool network;
14         bool simulate;
15         std::string layout_fn;
16         std::string state_fn;
17
18         Options(int, char **);
19 };
20
21 #endif