From ea5332e4a1a035e888709bee278fcafb182f7922 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Fri, 31 Jul 2026 05:00:49 -0400 Subject: Update --- 2026/games/just__jane/include/game_loop.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 2026/games/just__jane/include/game_loop.hpp (limited to '2026/games/just__jane/include/game_loop.hpp') diff --git a/2026/games/just__jane/include/game_loop.hpp b/2026/games/just__jane/include/game_loop.hpp new file mode 100644 index 0000000..d2b537c --- /dev/null +++ b/2026/games/just__jane/include/game_loop.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include + +constexpr int GAME_WIDTH = 120; +constexpr int GAME_HEIGHT = 80; +constexpr int SCALE = 2; + +struct ScorePetal { + Vector2 Position; + Texture2D Texture; +}; + +void UpdateDrawFrame(); -- cgit v1.3.1