feat: add audio

This commit is contained in:
2025-04-30 20:41:10 +02:00
parent 3b38e0da1f
commit 3b225d9e23
11 changed files with 47 additions and 15 deletions

View File

@@ -81,8 +81,8 @@ public class AsyncGameDispatcher extends GameDispatcher {
}
@Override
public void onMove(Move move) {
asyncForEachCall((l) -> l.onMove(move));
public void onMove(Move move, boolean captured) {
asyncForEachCall((l) -> l.onMove(move, captured));
}
@Override