diff options
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h new file mode 100644 index 0000000..fa456b2 --- /dev/null +++ b/src/config.h @@ -0,0 +1,21 @@ +#ifndef BLACKSHADES_CONFIG_H +#define BLACKSHADES_CONFIG_H + +#include <stdbool.h> +#include <stdint.h> + +struct Config { + int screen_width; + int screen_height; + float mouse_sensitivity; + bool debug; + bool vsync; + bool blood; + bool blur; + bool menu; + bool custom_levels; + bool music; + bool azerty; +}; + +#endif // BLACKSHADES_CONFIG_H |