aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKikooDX <kikoodx@paranoici.org>2022-03-03 01:53:27 +0100
committerKikooDX <kikoodx@paranoici.org>2022-03-03 01:53:27 +0100
commit2f6f0b858c253ec5eea1447b07801975c2d56ded (patch)
tree3493241bbfd82f83b995188e266d228fbe0d1485
parentabad63970f31855b1d7b5cb3bfefa64bf556b53b (diff)
downloadlzy-2f6f0b858c253ec5eea1447b07801975c2d56ded.tar.gz
prototype for LZY_DrawText
-rw-r--r--inc/lzy.h1
1 files changed, 1 insertions, 0 deletions
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);