GameSession

data class GameSession(val game: Game, val playerName: String?)

Represents the current game session with game state and player identity.

Constructors

Link copied to clipboard
constructor(game: Game, playerName: String?)

Properties

Link copied to clipboard
val game: Game

The active game instance.

Link copied to clipboard

The name of the player in this session, if set.