Compare commits

...

2 Commits

Author SHA1 Message Date
4b4c970027 Update README.md 2026-01-07 12:03:40 -05:00
maple
3a76505e1c Add test asset drawing 2025-12-21 13:05:18 -06:00
2 changed files with 6 additions and 4 deletions

View File

@@ -1,3 +1 @@
# RaylibTemplate
A template for making games with Raylib (with CMake)
This is a work in progress

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