1
0
Fork 0

Initial Commit

This commit is contained in:
Henrik Hautakoski 2025-07-18 17:04:51 +02:00
commit de4328aaba
5 changed files with 44 additions and 0 deletions

17
pacman/game.go Normal file
View file

@ -0,0 +1,17 @@
package main
import (
rl "github.com/gen2brain/raylib-go/raylib"
)
func main() {
rl.InitWindow(400, 300, "pacman")
defer rl.CloseWindow()
for !rl.WindowShouldClose() {
rl.BeginDrawing()
rl.ClearBackground(rl.Black)
rl.DrawText("Hello World", 0, 0, 24, rl.White)
rl.EndDrawing()
}
}