Files
Fishing2Server/Entity/Def/AppConfig.cs
2025-08-15 18:12:04 +08:00

14 lines
326 B
C#

namespace NB;
public class AppConfig
{
/// <summary>
/// 缓存过期检测时间间隔,1小时
/// </summary>
public static long CacheCheckIntervalTime = 360000;
/// <summary>
/// 玩家数据定时落地间隔
/// </summary>
public const long PlayerDataAutoSaveTime = 60000; // 600000;
}