Files
loading/scenes/scene.go

10 lines
201 B
Go
Raw Permalink Normal View History

2023-10-27 09:59:01 -04:00
package scenes
import "github.com/hajimehoshi/ebiten/v2"
type Scene interface {
Update() error
Draw(screen *ebiten.Image)
Layout(outsideWidth, outsideHeight int) (screenWidth, screenHeight int)
}