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