]> git.bts.cx Git - benzene.git/blob - src/bz/gfx/font.h
Fixed Aseprite rendering system
[benzene.git] / src / bz / gfx / font.h
1 #ifndef BZ_GFX_FONT_H
2 #define BZ_GFX_FONT_H
3
4 #include <bz/memory/arena.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 typedef struct BZFont BZFont;
11 typedef BZFont * BZFontID;
12
13 extern BZFontID bzGfxLoadFont(BZMemoryArenaID arena, const char *identifierFmt, ...);
14
15 #ifdef __cplusplus
16 }
17 #endif
18
19 #endif