package groovy import "github.com/hajimehoshi/ebiten/v2" type Scene interface { Update() error Draw(screen *ebiten.Image) Completed() bool }