Console client: Adding proper termination after the game. Adding missing source files.

This commit is contained in:
lotodore
2008-12-26 18:27:48 +00:00
parent 8de66094f3
commit 6f9129818c
12 changed files with 456 additions and 54 deletions
+6 -1
View File
@@ -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);