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 whiteIds; } public class AppConfig:Entity { public static AppConfigInfo inst; } }