Initial commit: Add main menu with Thai, Korean, Japanese buttons and language screens

This commit is contained in:
2026-05-09 00:08:05 +02:00
commit e4ec46e92e
6 changed files with 271 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
# Build and run commands for the Go raylib project
# Build the project
build:
go build -o learning .
# Run the project
run:
go run .
# Run all tests
test:
go test ./...
# Build and run tests
build-test:
go build -o learning . && go test ./...
# Clean build artifacts
clean:
rm -f learning