Console client: Adding proper termination after the game. Adding missing source files.
This commit is contained in:
@@ -140,11 +140,16 @@ namespace pokerth_console
|
||||
Console.WriteLine();
|
||||
}
|
||||
|
||||
public void PlayerWins(string name, uint moneyWon)
|
||||
public void PlayerWinsHand(string name, uint moneyWon)
|
||||
{
|
||||
Console.WriteLine("{0} wins ${1}.", name, moneyWon);
|
||||
}
|
||||
|
||||
public void PlayerWinsGame(string name)
|
||||
{
|
||||
Console.WriteLine("\n{0} wins the game.", name);
|
||||
}
|
||||
|
||||
public void Error(string message)
|
||||
{
|
||||
Console.WriteLine("Error: " + message);
|
||||
|
||||
Reference in New Issue
Block a user