kble-c/include/level.h

11 lines
146 B
C

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