Mirai's Miscellaneous Misadventures

M39 / include / mimimi / fonts.h

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

#ifndef MIMIMI_FONTS_H
#define MIMIMI_FONTS_H

struct mimimi_font
{
	unsigned char (*glyphs)[16];
	int indices[0x1100];
};

#endif