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); +}