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
loading.go Normal file
View File

@@ -0,0 +1,23 @@
package main
import "loading/scenes"
type Loading struct {
//Manager scenes.SceneManager
}
func init() {
}
func (l *Loading) Update() error {
return nil
}
func (l *Loading) Draw() {
}
func (l *Loading) Layout(outsideWidth, outsideHeight int) (screenWidth, screenHeight int) {
return 800, 600
}