Files
groovy/scene.go

10 lines
146 B
Go
Raw Normal View History

2023-08-21 08:04:25 -04:00
package groovy
import "github.com/hajimehoshi/ebiten/v2"
type Scene interface {
Update() error
Draw(screen *ebiten.Image)
Completed() bool
}