shithub: m8c

ref: 060978e75697f26b4b5340d1526d0bdf826f5cb0
dir: /src/inline_font.h/

View raw version
#ifndef INLINE_FONT_H_
#define INLINE_FONT_H_

struct inline_font {
    int width;
    int height;
    unsigned char bits[];
};

#endif