Struct RuntimeGameInfo.Info
Represents information about the current game state.
public struct RuntimeGameInfo.Info
- Inherited Members
Properties
CurrentTurnInfo
The current phase of the game.
public TurnInfo CurrentTurnInfo { readonly get; set; }
Property Value
- TurnInfo
PlayerName
The name of the current player.
public string PlayerName { readonly get; set; }
Property Value
PlayerScores
Dictionary where the key is the player's name and the value is their score.
public Dictionary<string, int> PlayerScores { readonly get; set; }