aboutsummaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authornathansmithsmith <nathansmith7@mailfence.com>2023-10-29 21:41:30 -0600
committernathansmithsmith <nathansmith7@mailfence.com>2023-10-29 21:41:30 -0600
commit0dd152a45305b54c6881eed1ff7d8d814cb92e59 (patch)
tree3118d279cd4246fb73aab97bd84c38eb84092218 /src/settings.h
parentf8e133343b9c07dbb66ea313fd982339fbd72137 (diff)
I over use render textures lol
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h
index 7d97bd2..119f4f4 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -29,6 +29,11 @@ typedef struct Settings {
// Fps shit.
int fps;
bool drawFps;
+
+ // World render shit.
+ int renderWidth;
+ int renderHeight;
+ bool useWorldRenderTexture;
} Settings;
void initSettings(Settings * settings);