123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef FONT_H
- #define FONT_H
- #include "common.h"
- #include "palcommon.h"
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- INT
- PAL_InitFont(
- VOID
- );
- VOID
- PAL_FreeFont(
- VOID
- );
- VOID
- PAL_DrawCharOnSurface(
- WORD wChar,
- SDL_Surface *lpSurface,
- PAL_POS pos,
- BYTE bColor
- );
- VOID
- PAL_DrawASCIICharOnSurface(
- BYTE bChar,
- SDL_Surface *lpSurface,
- PAL_POS pos,
- BYTE bColor
- );
- #ifdef __cplusplus
- }
- #endif
- #endif
|