diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-29 21:41:30 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-29 21:41:30 -0600 |
commit | 0dd152a45305b54c6881eed1ff7d8d814cb92e59 (patch) | |
tree | 3118d279cd4246fb73aab97bd84c38eb84092218 /src/settings.h | |
parent | f8e133343b9c07dbb66ea313fd982339fbd72137 (diff) |
I over use render textures lol
Diffstat (limited to 'src/settings.h')
-rw-r--r-- | src/settings.h | 5 |
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); |