blob: 9b71fc2409aebadace40de7705cbe036c8e8c150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef CONFIG_H__
#define CONFIG_H__
typedef struct {
int32_t fullscreen;
/* For input remapping */
uint32_t config_buttons[6][19];
} t_config;
extern t_config option;
#endif
|