Petition-to-the-Gods-V3/Assets/Scripts/Utils/GlobalData.cs
2025-11-18 16:14:50 +08:00

31 lines
602 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;
}