Files
gorpg/konstructor/konstructor.screen.playground.go
2023-07-04 22:58:23 +02:00

14 lines
253 B
Go

package konstructor
import (
"github.com/hajimehoshi/ebiten"
)
func (e *Engine) PlaygroundDraw(screen *ebiten.Image) {
e.Domain.GetLevel(e.KContext.CurrentLevel)
}
func (e *Engine) PlaygroundUpdate() {
e.Domain.GetLevel(e.KContext.CurrentLevel)
}