1
0
Fork 0

feat(ui): add options menu

This commit is contained in:
Henrik Hautakoski 2025-10-27 20:21:18 +01:00
parent 7d5d5b9a54
commit 30b194619f
3 changed files with 69 additions and 5 deletions

View file

@ -5,11 +5,12 @@ import (
)
const (
SFX_SHAPE_LOCKED audio.SoundID = 0
SFX_ROW_CLEARED audio.SoundID = 1
SFX_MENU_SELECT audio.SoundID = 0
SFX_MENU_ENTER audio.SoundID = 1
SFX_GAME_OVER audio.SoundID = 2
SFX_SHAPE_LOCKED audio.SoundID = 0
SFX_ROW_CLEARED audio.SoundID = 1
SFX_MENU_SELECT audio.SoundID = 0
SFX_MENU_ENTER audio.SoundID = 1
SFX_MENU_SOUND_VOLUME_SELECT audio.SoundID = 1
SFX_GAME_OVER audio.SoundID = 2
)
func LoadSound() *audio.Library {