Files
loading/scenes/scene.go
2023-10-27 09:59:01 -04:00

10 lines
201 B
Go

package scenes
import "github.com/hajimehoshi/ebiten/v2"
type Scene interface {
Update() error
Draw(screen *ebiten.Image)
Layout(outsideWidth, outsideHeight int) (screenWidth, screenHeight int)
}