Module'd up.

This commit is contained in:
2023-08-21 08:04:25 -04:00
parent cf7caad2dc
commit f2b3f371c4
2 changed files with 115 additions and 0 deletions

9
scene.go Normal file
View File

@@ -0,0 +1,9 @@
package groovy
import "github.com/hajimehoshi/ebiten/v2"
type Scene interface {
Update() error
Draw(screen *ebiten.Image)
Completed() bool
}