pvjc25/a3/world.h
2025-04-23 14:17:58 +00:00

10 lines
157 B
C

#ifndef WORLD_H_INCLUDED
#define WORLD_H_INCLUDED
#include "snake.h"
void render(const struct state* state);
void place_food(struct state* state);
#endif