Add test asset drawing

This commit is contained in:
maple
2025-12-21 13:05:18 -06:00
parent 3eb4bec98c
commit 3a76505e1c

View File

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