diff --git a/include/sdl3game/text.h b/include/sdl3game/text.h new file mode 100644 index 0000000..ffb7154 --- /dev/null +++ b/include/sdl3game/text.h @@ -0,0 +1,9 @@ +#ifndef _TEXT_H_ +#define _TEXT_H_ + +#include + +akerr_ErrorContext AKERR_NOIGNORE *text_loadFont(char *name, char *filepath, int size); +akerr_ErrorContext AKERR_NOIGNORE *text_renderTextAt(TTF_Font *font, char *text, SDL_Color color, int wraplength, int x, int y); + +#endif // _TEXT_H_