diff options
| author | Aldrik Ramaekers <aldrik@amftech.nl> | 2022-12-08 15:41:08 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@amftech.nl> | 2022-12-08 15:41:08 +0100 |
| commit | f84639d4b1eda622bf7667a7223a4a335c093437 (patch) | |
| tree | fa78998a68bfaac01b1be34ab1b354b86516d6fd /main.c | |
| parent | f8b97f2450bb789ae54a1d8d3845110342ff6134 (diff) | |
work
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,11 +4,15 @@ #include "include/objects.h" #include "include/map.h" #include "include/zombies.h" +#include "include/math_helper.h" +#include "include/bullets.h" #include "map.c" #include "players.c" #include "objects.c" #include "zombies.c" +#include "bullets.c" +#include "math_helper.c" #define CONFIG_DIRECTORY "zombieshooter" @@ -17,7 +21,6 @@ void update_func(platform_window* window) { draw_grid(window); draw_spawners(window); - draw_bullets(window); } void resize_func(platform_window* window, u32 change_x,u32 change_y) { |
