Table of Contents

Struct RuntimeGameInfo.Info

Namespace
ProjectL.Data
Assembly
Assembly-CSharp.dll

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

string

PlayerScores

Dictionary where the key is the player's name and the value is their score.

public Dictionary<string, int> PlayerScores { readonly get; set; }

Property Value

Dictionary<string, int>