playground header skeleton, playground screen into separated files

This commit is contained in:
2023-07-07 20:33:58 +02:00
parent 9a7be89da6
commit 09959a8932
6 changed files with 74 additions and 26 deletions

View File

@@ -0,0 +1,8 @@
package easy_ebitengine
import "github.com/hajimehoshi/ebiten"
func (e *Engine) PlaygroundDefaultPlayerDraw(screen *ebiten.Image) {
player := e.Domain.GetDefaultPlayer()
e.PlaygroundAssetDraw(screen, player.Type.Render, player.Position)
}