zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Entity/AppConfig.cs

25 lines
498 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using System;
using System.Collections.Generic;
using System.IO;
namespace ET {
public class AppConfigInfo
{
public bool showFPS;
public bool showBattleSkillInfo;
public bool showBattleDamageInfo;
public bool canOtherEnter;
public bool isHeartBeat;
public bool isLogMsg;
public bool isTest;
public HashSet<long> whiteIds;
}
public class AppConfig:Entity
{
public static AppConfigInfo inst;
}
}