summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/main.c b/main.c
index 7602504..fe90511 100644
--- a/main.c
+++ b/main.c
@@ -25,9 +25,14 @@ int main(int argc, char **argv)
TZR_DrawBegin();
TZR_DrawSetColor(0, 0, 0, 1);
TZR_DrawClear();
+ TZR_DrawSetColor(1, 1, 1);
+ font_draw(2, 3, "coucou");
+ TZR_DrawSetColor(1, 0, 1);
+ font_draw(3, 4, "69");
+ TZR_DrawSetColor(0, 0, 1);
+ font_draw(4, 5, "( n i c e )");
TZR_DrawEnd();
}
-
return 0;
}