From ac6c6b074023af486dbf45d4f807660ad7364cf3 Mon Sep 17 00:00:00 2001 From: Alexis DRAI Date: Thu, 29 Sep 2022 18:27:35 +0200 Subject: [PATCH] :memo: Update comments a little bit --- Sources/Model/Games/GameRunner.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Sources/Model/Games/GameRunner.cs b/Sources/Model/Games/GameRunner.cs index e9793be..eb24f80 100644 --- a/Sources/Model/Games/GameRunner.cs +++ b/Sources/Model/Games/GameRunner.cs @@ -49,7 +49,6 @@ namespace Model.Games /// saves a given game -- does not allow copies yet: if a game with the same name exists, it is overwritten /// /// a game to save - /// public Game Add(Game toAdd) { if (toAdd is null) @@ -66,7 +65,6 @@ namespace Model.Games /// /// creates a new game /// - /// public Game StartNewGame(string name, IManager playerManager, IEnumerable> dice) { Game game = new(name, playerManager, dice);