Client initial commit.

This commit is contained in:
2024-12-10 18:55:23 -05:00
commit ca681f08cd
20 changed files with 870 additions and 0 deletions

20
client/main.go Normal file
View File

@@ -0,0 +1,20 @@
package main
import (
"client/game"
"log"
"github.com/hajimehoshi/ebiten/v2"
)
func main() {
game := game.NewGame()
ebiten.SetWindowSize(640*1.5, 480*1.5)
ebiten.SetWindowTitle("game")
err := ebiten.RunGame(game)
if err != nil {
log.Fatal(err)
}
}