diff options
author | Thomas Voss <thomasvoss@live.com> | 2022-01-17 00:58:26 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2022-01-17 00:58:26 +0100 |
commit | 2d6984ec55c0b2aa51096ec8f7a8d43285fb9bec (patch) | |
tree | 3ad8efbe691aafd6317e9384009ebd8448c10d27 | |
parent | f85ce342d96b90376af0f735babe29dc704c7b0f (diff) |
More documentation
-rw-r--r-- | draughts/statTracker.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/draughts/statTracker.js b/draughts/statTracker.js index d8dd971..9d863d1 100644 --- a/draughts/statTracker.js +++ b/draughts/statTracker.js @@ -2,10 +2,10 @@ * stats get displayed on the splash screen. */ var gameStatus = { - minimumMoves: Infinity, - averageMoves: Infinity, - ongoingGames: 0, - totalGames: 0 + minimumMoves: Infinity, // The minimum amount of moves a game was completed in + averageMoves: Infinity, // The average amount of moves games are completed in + ongoingGames: 0, // The number of ongoing games + totalGames: 0 // The number of total games started (used for calculations) } module.exports = gameStatus; |