blob: 380c56079f4c3d07eaf6e09c06fbf496cd5b09d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _OPTIONS_INC
#define _OPTIONS_INC
typedef struct {
bool show_titlebar;
bool tab_icon;
bool ontop;
} Options;
extern Options options;
void InitOptions();
void EnableTitleBar();
#endif
|