]> git.tdb.fi Git - r2c2.git/blob - source/engineer/options.h
Persist most dialogs across runs
[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         float sim_speed;
16         std::string layout_fn;
17         std::string state_fn;
18         std::string uistate_fn;
19
20         Options(int, char **);
21 };
22
23 #endif