From 3a76505e1c4247a7a2fa4c943117f9dcf7ba6681 Mon Sep 17 00:00:00 2001 From: maple Date: Sun, 21 Dec 2025 13:05:18 -0600 Subject: [PATCH] Add test asset drawing --- src/draw.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/draw.c b/src/draw.c index 299b08e..b2afad4 100644 --- a/src/draw.c +++ b/src/draw.c @@ -3,4 +3,8 @@ #include "raylib.h" #include "raymath.h" -void Draw() { ClearBackground(BLACK); } +void Draw() { + ClearBackground(BLACK); + DrawTexture(junoTex, 0, 0, WHITE); + DrawTexture(tempTex, 0, 200, WHITE); +}