This commit is contained in:
Roman Khaliavka 2025-04-23 14:17:58 +00:00
parent c4abb93dd5
commit 5a7a1d6fdc

9
a3/world.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef WORLD_H_INCLUDED
#define WORLD_H_INCLUDED
#include "snake.h"
void render(const struct state* state);
void place_food(struct state* state);
#endif