namespace Funique
{
///
/// Master server information structure
/// ------------------------------------------------
/// 伺服器資訊結構
///
[System.Serializable]
public struct MasterInfomation
{
///
/// Server name
/// ------------------------------------------------
/// 伺服器 名稱
///
public string Name;
///
/// Server ip address
/// ------------------------------------------------
/// 伺服器 位址
///
public string IP;
///
/// Server port
/// ------------------------------------------------
/// 伺服器 連接端口
///
public int Port;
}
}