summaryrefslogtreecommitdiff
path: root/include/objects.h
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2022-12-11 16:14:54 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2022-12-11 16:14:54 +0100
commit24af775b5041cbed67dfc84f3a0d67850a4b6a1b (patch)
tree8858ba5158aa7a4b78e12ecbd17b509afda3f9d7 /include/objects.h
parent4933a7c038087ae465e588fafb392a57d7f92b87 (diff)
pathfinding
Diffstat (limited to 'include/objects.h')
-rw-r--r--include/objects.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/objects.h b/include/objects.h
index c4bb689..b7c14b3 100644
--- a/include/objects.h
+++ b/include/objects.h
@@ -28,8 +28,8 @@ typedef struct t_box {
vec2f br_u;
} box;
-object objects[50];
-int max_objects = 50;
+int max_objects = 150;
+object objects[150];
void create_objects();
void draw_objects_at_row(platform_window* window, int row);