hwtests/source/font.h

19 lines
278 B
C
Raw Normal View History

2014-10-26 18:47:14 -07:00
#ifndef FONT_H
#define FONT_H
typedef struct {char c; int x, y, w, h, xo, yo, xa; u8* data;}charDesc_s;
typedef struct
{
u8* data;
charDesc_s* desc;
u8 height;
u8 color[3];
}font_s;
extern u8 font1Data[];
extern charDesc_s font1Desc[];
extern font_s fontDefault;
#endif