Add: Added SKipTurn Button and Details Button. Fixed: TCP now display leaderboard

This commit is contained in:
rubenpirreram
2026-05-17 22:12:38 +02:00
parent 0fe7941c3e
commit 8f8491b1ad
4 changed files with 70 additions and 28 deletions
@@ -161,18 +161,14 @@ public class TCPClient implements IClient {
if (event.getIsError()) {
controller.view.showError(event.toString());
} else {
synchronized (controller) {
event.apply(controller.miniModel);
}
controller.view.render();
controller.view.applyAndRender(event);
}
} else if (read instanceof MiniModel model) {
synchronized (controller) {
controller.setModel(model);
controller.view.render();
}
controller.view.render();
}
} catch (ClassNotFoundException e) {