blob: 798fa35fb3174c7a2035e47500191896097b84e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "settings.h"
Settings defaultSettings()
{
return (Settings){
.windowWidth = 960,
.windowHeight = 720,
.screenWidth = 596,
.screenHeight = 447,
.mouseSpeed = 0.1,
.forwardKey = KEY_W,
.backwardKey = KEY_S,
.rightKey = KEY_D,
.leftKey = KEY_A
};
}
|