v3.0.2: blacksmith sfx now pause if music is paused in BG

This commit is contained in:
Evan Debenham
2025-03-17 14:45:40 -04:00
parent 434c467ac1
commit 6b61425cd8
2 changed files with 9 additions and 2 deletions

View File

@@ -234,6 +234,10 @@ public enum Music {
}
private boolean paused = false;
public synchronized boolean paused(){
return paused;
}
public synchronized void pause() {
paused = true;