Class GameSummary.Stats
Represents information needed to calculate the final score for a player.
public class GameSummary.Stats
- Inheritance
-
GameSummary.Stats
- Inherited Members
Fields
FinishedPuzzles
A list of puzzles that the player has finished.
public List<Puzzle> FinishedPuzzles
Field Value
- List<Puzzle>
FinishingTouchesTetrominos
A list of tetromino shapes that the player placed during finishing touches.
public List<TetrominoShape> FinishingTouchesTetrominos
Field Value
- List<TetrominoShape>
NumLeftoverTetrominos
The number of leftover tetrominos that the player has at the end of the game.
public int NumLeftoverTetrominos
Field Value
UnfinishedPuzzles
A list of puzzles that the player has started but did not finished.
public List<Puzzle> UnfinishedPuzzles
Field Value
- List<Puzzle>