the beginnings of another game...

This commit is contained in:
2026-07-01 00:17:51 -07:00
commit 574bb14d5b
2 changed files with 24 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
package main
import rl "vendor:raylib"
main :: proc() {
rl.InitWindow(WINDOW_WIDTH, WINDOW_HEIGHT, WINDOW_TITLE)
defer rl.CloseWindow()
rl.SetTargetFPS(60)
for !rl.WindowShouldClose() {
rl.BeginDrawing()
defer rl.EndDrawing()
rl.ClearBackground({30, 33, 40, 255})
}
}