prototype for LZY_DrawText

This commit is contained in:
KikooDX 2022-03-03 01:53:27 +01:00
parent abad63970f
commit 2f6f0b858c
1 changed files with 1 additions and 0 deletions

View File

@ -56,6 +56,7 @@ int LZY_DrawRect(int x, int y, unsigned int w, unsigned int h);
int LZY_DrawFillRect(int x, int y, unsigned int w, unsigned int h);
int LZY_DrawTile(unsigned int id, int x, int y);
int LZY_DrawChar(unsigned char chr, int x, int y);
int LZY_DrawText(const char *text, int x, int y);
LZY_Music *LZY_MusicLoad(const char *path);
int LZY_MusicDestroy(LZY_Music *music);
int LZY_MusicPlay(LZY_Music *music, int loops);