Merge pull request 'Tests fonctionnels' (#54) from testBestScore into dev
continuous-integration/drone/push Build is failing Details

Reviewed-on: #54
Reviewed-by: Rémi LAVERGNE <remi.lavergne@etu.uca.fr>
pull/55/head
Rémi LAVERGNE 12 months ago
commit 619e53927f

@ -14,6 +14,10 @@ namespace Models
{
GamesPlayed = gamesPlayed;
Score = score;
if (GamesPlayed < 0)
GamesPlayed = 0;
if (Score < 0)
Score = 0;
}
public int GamesPlayed { get; private set; }

Loading…
Cancel
Save