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);