From 6dbd16cd920b51bc24b60d0561bd707ff8862cc5 Mon Sep 17 00:00:00 2001 From: BoredGuy Date: Thu, 19 Mar 2026 09:43:11 +0300 Subject: Added Walls - And more player mechanics --- src/main.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 8187ccf..75de22f 100644 --- a/src/main.c +++ b/src/main.c @@ -3,6 +3,7 @@ #include "settings.h" #include "physics.h" #include "game.h" +#include "wall.h" #include "player.h" struct settings settings; @@ -15,6 +16,8 @@ int main() { SetTargetFPS(settings.target_fps); add_player(20.0, 20.0); + add_wall(50, 100, 200, 200); + add_wall(100, 200, 200, 50); while (!WindowShouldClose()) { update_game(GetFrameTime()); -- cgit v1.2.3