Files
loading/loading.go

24 lines
305 B
Go
Raw Normal View History

2023-10-27 09:59:01 -04:00
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
}