summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.c b/main.c
index 0346d3c..bf6ee05 100644
--- a/main.c
+++ b/main.c
@@ -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) {