api-impl: stubs and fixes for Open Sudoku

This commit is contained in:
Kilian "CaféHaine" Guillaume
2024-11-19 18:00:38 +01:00
parent eba9c7037c
commit 44d922baea
7 changed files with 29 additions and 13 deletions

View File

@@ -52,4 +52,8 @@ public class AudioManager {
public void setStreamVolume(int streamType, int index, int flags) {
System.out.println("AudioManager.setStreamVolume: >" + streamType + "< >" + index + "< >" + flags + "<");
}
public boolean isStreamMute(int streamType) {
return false;
}
}