diff options
author | nathan <nathansmith@disroot.org> | 2025-07-04 13:00:08 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-07-04 13:00:08 +0000 |
commit | 2b2b69ee31f00aa46ab6baa967e12437ce7334d1 (patch) | |
tree | 1ba7fd19c30bb33ef20f55afc84ccfff30460969 /src/settings.h | |
parent | de3a92fb2bde8cbec688f788c53f7ba52d6a723a (diff) | |
download | FindThings-2b2b69ee31f00aa46ab6baa967e12437ce7334d1.tar.gz FindThings-2b2b69ee31f00aa46ab6baa967e12437ce7334d1.tar.bz2 FindThings-2b2b69ee31f00aa46ab6baa967e12437ce7334d1.zip |
Heightmap, player, and more concepts
Diffstat (limited to 'src/settings.h')
-rw-r--r-- | src/settings.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h index 2d2c4f4..3576955 100644 --- a/src/settings.h +++ b/src/settings.h @@ -7,6 +7,13 @@ typedef struct Settings { // Window. int windowWidth; int windowHeight; + + // Controls. + float mouseSpeed; + KeyboardKey forwardKey; + KeyboardKey backwardKey; + KeyboardKey rightKey; + KeyboardKey leftKey; } Settings; Settings defaultSettings(); |