blob: 68cdca79ae9410fcc07ef58647999440cd26143a (
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include "utils.h"
#ifndef SETTINGS_H
#define SETTINGS_H
typedef struct {
// Window.
int windowWidth;
int windowHeight;
// Screen (render texture for pixellyness).
int screenWidth;
int screenHeight;
// Render.
float fov;
// Edge detection.
float edgeDetectionWidth;
float edgeDetectionHeight;
float edgeDetectionFactor;
// Color.
float gamma;
float colorCount;
// Controls.
float mouseSpeed;
KeyboardKey forwardKey;
KeyboardKey backwardKey;
KeyboardKey rightKey;
KeyboardKey leftKey;
KeyboardKey toggleCursorKey;
} Settings;
Settings defaultSettings();
// Bite my shiny metal ass!
#endif
|