Add missing credit for Esperanto translation
[neverball.git] / share / font.h
blobe900227257f30179979033b61839331183a0a9e6
1 #ifndef FONT_H
2 #define FONT_H
4 #include <SDL_ttf.h>
5 #include <SDL_rwops.h>
7 #include "base_config.h"
9 struct font
11 char path[PATHMAX];
13 TTF_Font *ttf[3];
14 SDL_RWops *rwops;
15 void *data;
16 int datalen;
19 int font_load(struct font *, const char *path, int sizes[3]);
20 void font_free(struct font *);
22 int font_init(void);
23 void font_quit(void);
25 #endif