#pragma once #include "type.h" struct Level { int w, h, s; /* weigth, height, size */ tile_t *data; }; void level_init(void); void level_draw(void);