Mirai's Miscellaneous Misadventures

M40 / include / mimimi / assets.h

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

#ifndef MIMIMI_ASSETS_H
#define MIMIMI_ASSETS_H

struct mimimi_image
{
	int width, height;
	unsigned char *colors;
};

#endif