14 lines
160 B
Go
14 lines
160 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2"
|
|
)
|
|
|
|
func main() {
|
|
err := ebiten.RunGame(parseFlags())
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|