Mirai's Miscellaneous Misadventures

M42 / include / mimimi / fonts.h

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

#ifndef MIMIMI_FONTS_H
#define MIMIMI_FONTS_H

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

#endif