Petition-to-the-Gods-V3/Assets/Scripts/Utils/GlobalData.cs
chiyu.lin 585a8bcf9a fix Q13 Q14
update text & countdown 60s
2025-11-18 18:34:52 +08:00

36 lines
721 B
C#

using UnityEngine;
public class GlobalData
{
#region <>
/*
///<summary>
/// 伺服器 IP
///</summary>
public static string SERVER_IP
{
set { _SERVER_IP = value; }
get
{
return _SERVER_IP;
}
}
private static string _SERVER_IP = "127.0.0.1";
///<summary>
/// 伺服器 Port
///</summary>
public const ushort _SERVER_PORT = 17777;
*/
#endregion
/// <summary>
/// 小遊戲 - 對話的倒數時間
/// </summary>
public const int GAME_TALK_COUNTDOWN_TIME = 120;
/// <summary>
/// 詩籤的倒數時間
/// </summary>
public const int WORD_COUNTDOWN_TIME = 60;
}