Mirai's Miscellaneous Misadventures

M23 / include / mimimi / ground.h

// copyright 2022 zamfofex
// license: AGPLv3 or later

#ifndef MIMIMI_GROUND_H
#define MIMIMI_GROUND_H

struct mimimi_ground
{
	int width;
	int height;
	unsigned char tiles[];
};

#endif