mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-18 13:49:58 +01:00
11 lines
217 B
C
11 lines
217 B
C
#ifndef _GFONTLIB_H
|
|
#define _GFONTLIB_H
|
|
|
|
#include "goom_graphic.h"
|
|
|
|
void gfont_load (void);
|
|
void goom_draw_text (Pixel * buf,int resolx,int resoly, int x, int y,
|
|
const char *str, float chspace, int center);
|
|
|
|
#endif
|