feat(user-sessions): implemented interactivity

This commit is contained in:
2025-11-01 20:48:13 +01:00
parent f32741d860
commit 3e6cbe7d2d
14 changed files with 296 additions and 36 deletions

View File

@@ -0,0 +1,7 @@
package exceptions;
public class NotEnoughPlayersException extends GameException {
public NotEnoughPlayersException(String message) {
super(message);
}
}