diff --git a/game/state/handlers/gameover.go b/game/state/handlers/gameover.go index 79e3fe1..987c5f7 100644 --- a/game/state/handlers/gameover.go +++ b/game/state/handlers/gameover.go @@ -1,6 +1,8 @@ package handlers import ( + "tetris/assets" + "tetris/engine/audio" "tetris/engine/render" "tetris/game/state" @@ -10,6 +12,7 @@ import ( type GameOver struct{} func (GameOver) Enter() { + audio.Play(assets.SFX_GAME_OVER) } func (GameOver) Exit() {