Tons of experimental updates.

This commit is contained in:
2023-10-27 09:59:01 -04:00
parent 8fd27c5df7
commit 1ffc593ebe
11 changed files with 625 additions and 0 deletions

9
scenes/scene.go Normal file
View File

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