From 2f6f0b858c253ec5eea1447b07801975c2d56ded Mon Sep 17 00:00:00 2001 From: KikooDX Date: Thu, 3 Mar 2022 01:53:27 +0100 Subject: [PATCH] prototype for LZY_DrawText --- inc/lzy.h | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/lzy.h b/inc/lzy.h index 57d1ee7..96002c4 100644 --- a/inc/lzy.h +++ b/inc/lzy.h @@ -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);