summaryrefslogtreecommitdiff
path: root/last_contact/options.h
blob: 1740043b7be5d88b686e71005ef876efbb491757 (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, mod_win;

	bool hide_if_visible;
} Options;

extern Options options;

void InitOptions();

#endif