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

23
scenes/menu.go Normal file
View File

@@ -0,0 +1,23 @@
package scenes
import "github.com/hajimehoshi/ebiten/v2"
type Menu struct {
}
func CreateNewMenu() Menu {
return Menu{}
}
func (m *Menu) Draw(screen *ebiten.Image) {
}
func (m *Menu) Update() error {
return nil
}
func (m *Menu) Layout(outsideWidth, outsideHeight int) (screenWidth, screenHeight int) {
return 800, 600
}