blob: f5b82917b9d5f918232d15268987caa23f86fbbe (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _GFONTLIB_H
#define _GFONTLIB_H
#include "goom_graphic.h"
void gfont_load ();
void goom_draw_text (Pixel * buf,int resolx,int resoly, int x, int y,
const char *str, float chspace, int center);
#endif
|