Versions in this module Expand all Collapse all v1 v1.0.0 Jul 19, 2024 Changes in this version + var DrawList []Drawfunc + var InitList []Initfunc + var UpdateList []Updatefunc + func RegisterDraw(a func(screen *ebiten.Image), b int) + func RegisterInit(a func() error, b int) + func RegisterUpdate(a func(), b int) + type Drawfunc struct + type Game struct + func NewGame() (*Game, error) + func (g *Game) Draw(screen *ebiten.Image) + func (g *Game) Layout(outsideWidth, outsideHeight int) (screenWidth, screenHeight int) + func (g *Game) Update() error + type Initfunc struct + type Updatefunc struct