Add isPaused() and isStopped() methods to Sound interface

This commit is contained in:
2021-04-08 22:17:51 +02:00
parent c8f182aef1
commit 028faae564
2 changed files with 14 additions and 0 deletions

View File

@@ -9,6 +9,10 @@ public interface Sound {
boolean isPlaying();
boolean isPaused();
boolean isStopped();
void setGain(float gain);
void setRepeat(boolean repeat);