blob: fa456b2aa37c8014b023d236d5d8b5e901ccf362 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|