#pragma once struct Level { int width; int height; int *data; }; void level_read(struct Level*, char *path); void level_free(struct Level*);