25 lines
498 B
C#
Executable File
25 lines
498 B
C#
Executable File
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;
|
|
|
|
|
|
}
|
|
|
|
}
|