Add comments, break keyboard..?
continuous-integration/drone/push Build is passing Details

pull/90/head
Alexis Drai 3 years ago
parent cccd21ca12
commit 8f42e7577e

@ -41,16 +41,31 @@ namespace Model.Games
throw new ArgumentException("param should not be null or blank", nameof(name)); throw new ArgumentException("param should not be null or blank", nameof(name));
} }
/// <summary>
/// saves a given game
/// </summary>
/// <param name="game">a game to save</param>
/// <exception cref="NotSupportedException"></exception>
public void SaveGame(Game game) public void SaveGame(Game game)
{ {
throw new NotSupportedException(); throw new NotSupportedException();
} }
/// <summary>
/// loads a game by name
/// </summary>
/// <param name="name">name of game to be loaded</param>
/// <returns>loaded game</returns>
/// <exception cref="NotSupportedException"></exception>
public Game LoadGame(string name) public Game LoadGame(string name)
{ {
throw new NotSupportedException(); throw new NotSupportedException();
} }
/// <summary>
/// creates a new game
/// </summary>
/// <exception cref="NotSupportedException"></exception>
public void StartNewGame() public void StartNewGame()
{ {
throw new NotSupportedException(); throw new NotSupportedException();
@ -60,5 +75,9 @@ namespace Model.Games
{ {
throw new NotSupportedException(); throw new NotSupportedException();
} }
private void PlayGame(Game game)
{
throw new NotSupportedException();
}
} }
} }

Loading…
Cancel
Save