Create text module for displaying messages

This commit is contained in:
2025-10-18 17:43:22 +01:00
parent d6ec24ae5d
commit 88f49dab91
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