Mirai's Miscellaneous Misadventures

M21 / include / mimimi / ground.h

1// copyright 2022 zamfofex
2// license: AGPLv3 or later
3
4#ifndef MIMIMI_GROUND_H
5#define MIMIMI_GROUND_H
6
7struct mimimi_ground
8{
9	int width;
10	int height;
11	unsigned char tiles[];
12};
13
14#endif