feat: add line completed sound

This commit is contained in:
Martin Prokoph
2025-06-29 15:06:01 +02:00
parent 0a2294cd3d
commit f226cb40e2
8 changed files with 5 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
package eu.midnightdust.yaytris.util;
public enum SoundEffect {
BEEP("/sounds/beep.wav");
BOOP("/sounds/boop.wav"), LINE_COMPLETED("/sounds/line-completed.wav");
final String location;
SoundEffect(String location) {