blob: 668e615f9d1dd39b49a0b7b1b0fe4e8d7f8950ec (
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
|
#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;
// 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
|