ichigo/engine/loading.go

13 lines
265 B
Go
Raw Normal View History

2021-09-27 20:00:28 +10:00
package engine
import (
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
)
type LoadingScreen struct{}
func (LoadingScreen) Draw(screen *ebiten.Image, _ *ebiten.DrawImageOptions) {
ebitenutil.DebugPrint(screen, "Loading...")
}