From 2d6984ec55c0b2aa51096ec8f7a8d43285fb9bec Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Mon, 17 Jan 2022 00:58:26 +0100 Subject: More documentation --- draughts/statTracker.js | 8 ++++---- 1 file 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; -- cgit v1.2.3