aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h
index d75fd4a..14d6502 100644
--- a/src/game.h
+++ b/src/game.h
@@ -8,6 +8,9 @@
#ifndef GAME_H
#define GAME_H
+#define MAX_ASPECT 2.0 // Fuck ultra-wide.
+#define ULTRA_WIDE_SPIN_SPEED 50.0
+
typedef enum {
MAIN_MENU_SCENE,
GAME_SCENE
@@ -25,6 +28,7 @@ struct Game {
RenderTexture render;
float scale;
Rectangle destination;
+ bool ultraWideMode;
} screen;
};