feat(ui): enhance game UI with responsive design and new components

43 [Subtask] UI looks better and improved
This commit is contained in:
2025-11-09 20:22:15 +01:00
parent 1496179a6b
commit c45fb0caf3
8 changed files with 369 additions and 117 deletions

View File

@@ -39,12 +39,14 @@ class IngameController @Inject()(
case SelectTrump =>
Ok(views.html.ingame.selecttrump(
g.getPlayerByUser(request.user),
g.logic
g.logic,
gameId
))
case TieBreak =>
Ok(views.html.ingame.tie(
g.getPlayerByUser(request.user),
g.logic
g.logic,
gameId
))
case _ =>
InternalServerError(s"Invalid game state for in-game view. GameId: $gameId" + s" State: ${g.logic.getCurrentState}")