From 1915e93de2114b34fce29f28d9b26415208ede2b Mon Sep 17 00:00:00 2001 From: heaven Date: Fri, 23 Jan 2026 22:33:18 +0100 Subject: [PATCH] Enough for today --- src/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 59302d0..871d1ab 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4,6 +4,11 @@ int main(void) { const int screenWidth = 800; const int screenHeight = 450; + struct Player { + Rectangle playerRec; + float velocity; + }; + InitWindow(screenWidth, screenHeight, "DREAM"); SetTargetFPS(60);