Initial commit: empty raylib window

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
2026-06-07 21:30:33 +02:00
parent 47a71d9b04
commit 34fff3cc0d
3 changed files with 33 additions and 0 deletions
Executable
BIN
View File
Binary file not shown.
+21
View File
@@ -0,0 +1,21 @@
package main
import "core:fmt"
import "core:os"
import raylib "vendor:raylib"
main :: proc() {
width: i32 = 800
height: i32 = 450
raylib.InitWindow(width, height, "HanjaKanaMun")
defer raylib.CloseWindow()
raylib.SetTargetFPS(60)
for !raylib.WindowShouldClose() {
raylib.BeginDrawing()
raylib.ClearBackground(raylib.WHITE)
raylib.EndDrawing()
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"name": "HanjaKanaMun",
"path": ".",
"source_dir": ".",
"include_dirs": ["vendor"],
"rays": [
{
"name": "raylib",
"path": "vendor:raylib"
}
]
}