diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-09 01:26:05 -0600 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-09 01:26:05 -0600 |
commit | 708072e716e7ab22a37f528311a433f195f75054 (patch) | |
tree | ee778b916531b8da3967ad5324019cbfb4e03e1c /src/settings.h | |
parent | 3f0be672f9c5a07a98be0dc703b95f1bbe73f33e (diff) |
World entries added
Diffstat (limited to 'src/settings.h')
-rw-r--r-- | src/settings.h | 4 |
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 |