blob: 3d93d7e0126b91189062b9819b6f962645789b9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _OPTIONS_INC
#define _OPTIONS_INC
typedef struct {
int vk;
bool mod_shift, mod_alt, mod_ctrl;
bool hide_if_visible;
} Options;
extern Options options;
void InitOptions();
#endif
|