aboutsummaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-07-09 01:26:05 -0600
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-07-09 01:26:05 -0600
commit708072e716e7ab22a37f528311a433f195f75054 (patch)
treeee778b916531b8da3967ad5324019cbfb4e03e1c /src/settings.h
parent3f0be672f9c5a07a98be0dc703b95f1bbe73f33e (diff)
World entries added
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h
index a880a2c..15cdcb7 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -13,8 +13,12 @@ typedef struct Settings {
float mouseSensitivity;
float scrollBarSpeed;
ControlMode controlMode;
+
+ int fps;
+ bool drawFps;
} Settings;
void initSettings(Settings * settings);
+void applySettings(Settings * settings);
#endif