shithub: m8c

ref: a157e0d7155d086cf9b4c38db4a67449b8d296d0
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