10 lines
157 B
C
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
|