Mainly cosmetic changes.

This commit is contained in:
lotodore
2008-12-19 10:26:02 +00:00
parent e78ce57e5d
commit b2dae6e4f7
5 changed files with 205 additions and 43 deletions
+53
View File
@@ -0,0 +1,53 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace pokerth_console
{
class ServerSettings
{
public ServerSettings()
{
}
public string IPv4Address
{
get
{
return m_ipv4Address;
}
set
{
m_ipv4Address = value;
}
}
public string IPv6Address
{
get
{
return m_ipv6Address;
}
set
{
m_ipv6Address = value;
}
}
public int Port
{
get
{
return m_port;
}
set
{
m_port = value;
}
}
private string m_ipv4Address = "";
private string m_ipv6Address = "";
private int m_port = 0;
}
}