2020-05-05 12:15:53 +00:00
|
|
|
#ifndef CONFIGFILE_H
|
|
|
|
#define CONFIGFILE_H
|
|
|
|
|
2020-05-08 20:59:08 +00:00
|
|
|
extern bool configGameBridge;
|
2020-05-05 12:15:53 +00:00
|
|
|
extern bool configFullscreen;
|
|
|
|
extern unsigned int configKeyA;
|
|
|
|
extern unsigned int configKeyB;
|
|
|
|
extern unsigned int configKeyStart;
|
|
|
|
extern unsigned int configKeyR;
|
|
|
|
extern unsigned int configKeyZ;
|
|
|
|
extern unsigned int configKeyCUp;
|
|
|
|
extern unsigned int configKeyCDown;
|
|
|
|
extern unsigned int configKeyCLeft;
|
|
|
|
extern unsigned int configKeyCRight;
|
|
|
|
extern unsigned int configKeyStickUp;
|
|
|
|
extern unsigned int configKeyStickDown;
|
|
|
|
extern unsigned int configKeyStickLeft;
|
|
|
|
extern unsigned int configKeyStickRight;
|
|
|
|
|
|
|
|
void configfile_load(const char *filename);
|
|
|
|
void configfile_save(const char *filename);
|
|
|
|
|
|
|
|
#endif
|