Create text module for displaying messages

This commit is contained in:
Camden Dixie O'Brien
2025-10-15 13:58:33 +01:00
parent a3486b47c7
commit 7e6637dce6
4 changed files with 128 additions and 47 deletions

6
text.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef TEXT_H
#define TEXT_H
void text_draw(const char *s);
#endif