#ifndef __TEXT_H__ #define __TEXT_H__ #include "renderer.h" #include typedef struct { int x; int y; int z; } Position; int text_renderText(RenderObject_t* renderObject, float x, float y, int z, SDL_Color color, const char* fontFilename, int fontSize, char* format, ...); void text_freeFontCache(void); #endif