Initial Commit
This commit is contained in:
commit
5314a9d5c5
308 changed files with 190647 additions and 0 deletions
14
include/render/text.h
Normal file
14
include/render/text.h
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue