11 lines
181 B
C
11 lines
181 B
C
#ifndef WORLD_H_INCLUDED
|
|
#define WORLD_H_INCLUDED
|
|
|
|
#include "snake.h"
|
|
|
|
void init_world(struct state* world, int width, int height);
|
|
|
|
void print_world(struct state* world);
|
|
|
|
#endif
|