summary refs log tree commit diff
path: root/src/config.h
blob: 8220a7829a32f2345243959db49240b81a5f6b3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef BLACKSHADES_CONFIG_H
#define BLACKSHADES_CONFIG_H

#include <stdbool.h>
#include <stdint.h>

struct Config {
	int width;
	int height;
	bool vsync;
	bool blur;
	bool blood;

	bool music;

	float mouse_sensitivity;

	bool menu;
	bool custom_levels;
	bool debug;
};

#endif // BLACKSHADES_CONFIG_H