go back
1// copyright 2022 zamfofex 2// license: AGPLv3 or later 3 4#ifndef MIMIMI_FONTS_H 5#define MIMIMI_FONTS_H 6 7struct mimimi_font 8{ 9 unsigned char (*glyphs)[16]; 10 int indices[0x1100]; 11}; 12 13#endif
// copyright 2022 zamfofex
// license: AGPLv3 or later
#ifndef MIMIMI_FONTS_H
#define MIMIMI_FONTS_H
struct mimimi_font
{
unsigned char (*glyphs)[16];
int indices[0x1100];
};
#endif