Add language compile tool

This commit is contained in:
2025-06-22 19:24:13 -05:00
parent c176078df2
commit 8ab17dae6c
5 changed files with 168 additions and 1 deletions

View File

@ -88,9 +88,11 @@ void drawUIText(
assertNotNull(text, "Text to draw cannot be NULL");
if(length == 0) return;
BeginBlendMode(BLEND_ALPHA);
for(uint16_t i = 0; i < length; i++) {
drawUIChar(text[i], x + (i * FONT_TILE_WIDTH), y, color);
}
EndBlendMode();
}
void drawUIChar(