lfsdash/text.h

17 lines
257 B
C
Raw Permalink Normal View History

2014-06-29 08:18:21 +00:00
#ifndef TEXT_H
#define TEXT_H
#define TEXT_SIZE 64
enum {
TA_LEFT,
TA_RIGHT,
TA_TOP,
TA_BOTTOM,
TA_CENTRE,
};
void drawText(const char *text, FTGLfont *font, float x, float y, float xs, float ys, int xa, int ya);
#endif /* TEXT_H */