blob: 468f4021b40a1c2e87e084128bda2ab6fe3a9085 (
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
40
41
42
43
44
45
46
47
48
49
50
|
#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;
// Update.
float maxUpdateDistance;
// Cross hair.
bool isCrossHairEnabledDefault;
float crossHairSize;
float crossHairThickness;
Color crossHairColor;
// Controls.
float mouseSpeed;
KeyboardKey forwardKey;
KeyboardKey backwardKey;
KeyboardKey rightKey;
KeyboardKey leftKey;
KeyboardKey toggleCursorKey;
KeyboardKey toggleCrossHairKey;
KeyboardKey interactKey;
} Settings;
Settings defaultSettings();
// Bite my shiny metal ass!
#endif
|