Console client: Several fixes and improvements (thanks to heyn).

This commit is contained in:
lotodore
2008-12-27 16:24:49 +00:00
parent ef8e277295
commit e4ead9e706
12 changed files with 91 additions and 21 deletions
+13
View File
@@ -65,8 +65,21 @@ namespace pokerth_lib
}
}
public string Server
{
get
{
return m_server;
}
set
{
m_server = value;
}
}
private string m_ipv4Address = "";
private string m_ipv6Address = "";
private string m_server = "";
private int m_port = 0;
}
}