summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 3 insertions, 0 deletions
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());