This commit is contained in:
hiroebe 2020-01-06 19:43:29 +09:00 committed by Hajime Hoshi
parent 9e51e6796d
commit 64e838584a

5
doc.go
View File

@ -43,11 +43,12 @@
// }
//
// func main() {
// game := &Game{}
// // Sepcify the window size as you like. Here, a doulbed size is specified.
// ebiten.SetWindowSize(640, 480)
// ebiten.SetTitle("Your game's title")
// ebiten.SetWindowTitle("Your game's title")
// // Call ebiten.RunGame to start your game loop.
// if err := ebiten.Run(game); err != nil {
// if err := ebiten.RunGame(game); err != nil {
// log.Fatal(err)
// }
// }