You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: playground/core-concepts/core-3-game-manager.md
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -185,6 +185,13 @@ and
185
185
gameManager.loseGame();
186
186
```
187
187
188
+
### Score calculation
189
+
190
+
Once the game is online, players will be able to submit their code and a score will be calculated to determine their rank in the leaderboard.
191
+
192
+
This score corresponds to **the sum of all the scores obtained when running validators**. Validators are specific kinds of test cases. Make sure you [configure them correctly](core-4-configuration.md#test-case-file).
193
+
194
+
188
195
## Optimization Game Features <aname="optimization-game-features"></a>
189
196
190
197
An Optimization game is a Solo game with a score. The only differences comes in the [configuration](core-4-configuration.md#optimization-game-configuration) and the metadata you need to send.
@@ -198,8 +205,3 @@ public void onEnd() {
198
205
}
199
206
```
200
207
201
-
### Score calculation
202
-
203
-
Once the game is online, players will be able to submit their code and a score will be calculated to determine their rank in the leaderboard.
204
-
205
-
This score corresponds to **the sum of all the scores obtained when running validators**. Validators are specific kinds of test cases. Make sure you [configure them correctly](core-4-configuration.md#test-case-file).
0 commit comments