feat(render): add UI for score and game state

This commit is contained in:
Vladimir V Maksimov
2026-05-12 11:21:10 +03:00
parent 6ed363e6de
commit 531bde3928
2 changed files with 21 additions and 0 deletions

View File

@@ -19,6 +19,7 @@ func (g *Game) Update() error {
func (g *Game) Draw(screen *ebiten.Image) {
g.renderer.DrawWorld(screen, g.matchManager.World)
g.renderer.DrawUI(screen, g.matchManager)
}
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {