commit 574bb14d5b999b67039ef9291626c04eec85e1bc Author: codegirl-007 Date: Wed Jul 1 00:17:51 2026 -0700 the beginnings of another game... diff --git a/constants.odin b/constants.odin new file mode 100644 index 0000000..e0caab4 --- /dev/null +++ b/constants.odin @@ -0,0 +1,6 @@ +package main + +WINDOW_WIDTH :: 1280 +WINDOW_HEIGHT :: 720 +WINDOW_TITLE :: "Game 1" + diff --git a/main.odin b/main.odin new file mode 100644 index 0000000..7d54751 --- /dev/null +++ b/main.odin @@ -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}) + } +} +