From e6fcb273475e07f09d6c962e7f7ea4cd62a74207 Mon Sep 17 00:00:00 2001 From: Roman Khaliavka Date: Wed, 23 Apr 2025 15:35:09 +0000 Subject: [PATCH] a3 --- a3/world.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/a3/world.h b/a3/world.h index df2d4e9..858f4a7 100644 --- a/a3/world.h +++ b/a3/world.h @@ -3,7 +3,8 @@ #include "snake.h" -void render(const struct state* state); -void place_food(struct state* state); +void init_world(struct state* world, int width, int height); -#endif +void print_world(struct state* world); + +#endif