Console client: Display cards of player for each hand. Display server messages.

This commit is contained in:
lotodore
2008-12-23 02:15:49 +00:00
parent 6fa4f6585b
commit 28e7accd90
6 changed files with 58 additions and 22 deletions
+8
View File
@@ -42,6 +42,14 @@ namespace pokerth_console
}
}
public PlayerInfo GetPlayerInfo(uint id)
{
lock (m_list)
{
return m_list[id];
}
}
public bool HasPlayer(uint id)
{
lock (m_list)