1
0
Fork 0

Initial Commit

This commit is contained in:
Henrik Hautakoski 2025-07-04 07:34:31 +02:00
commit 5314a9d5c5
308 changed files with 190647 additions and 0 deletions

14
include/render/text.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef __RENDER_TEXT_H
#define __RENDER_TEXT_H
#include <SDL3/SDL_render.h>
#include <stddef.h>
int text_init(SDL_Renderer *renderer);
void text_shutdown();
int text_render(const char *text, size_t len, float x, float y);
#endif // !__RENDER_TEXT_H