Console client: Adding support for password protected games. Fixed issue with custom blinds. Cosmetic changes.

This commit is contained in:
lotodore
2008-12-28 01:37:59 +00:00
parent e4ead9e706
commit 128c917a5b
8 changed files with 45 additions and 15 deletions
+8
View File
@@ -50,6 +50,14 @@ namespace pokerth_lib
}
}
public bool HasGame(uint id)
{
lock (m_list)
{
return m_list.ContainsKey(id);
}
}
public void SetGameInfo(uint id, GameInfo info)
{
lock (m_list)