pvjc25/a3/world.h
2025-04-23 15:35:09 +00:00

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