mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
60 lines
1.2 KiB
C#
60 lines
1.2 KiB
C#
namespace MoleMole
|
|
{
|
|
public class ConfigBasic
|
|
{
|
|
public int FriendAddFriendPoint;
|
|
|
|
public int StrangeAddFriendPoint;
|
|
|
|
public int RecommendFriendListNum;
|
|
|
|
public int BindAccountWarningIntervalSecond;
|
|
|
|
public int BindIdentityWarningIntervalSecond;
|
|
|
|
public int ShowBulletinIntervalSecond;
|
|
|
|
public int CheckAssetBoundleIntervalSecond;
|
|
|
|
public int CheckBulletinIntervalSecond;
|
|
|
|
public int CheckGachaInfoIntervalSecond;
|
|
|
|
public string EndlessLevelLuaFilePath;
|
|
|
|
public float EndlessInitTimer;
|
|
|
|
public string DefendModeLevelLuaFilePath;
|
|
|
|
public int MinPlayerPunishLevel;
|
|
|
|
public int PlayerPunishLevelDifferenceStepOne;
|
|
|
|
public int PlayerPunishLevelDifferenceStepTwo;
|
|
|
|
public int PlayerPunishLevelDifferenceStepThree;
|
|
|
|
public bool IsRestartWhenGameResume;
|
|
|
|
public int RestartGameTimeSpanSeconds;
|
|
|
|
public bool FeatureOnRetrySendLevelEndReq;
|
|
|
|
public int PlayerLevelNeedShowIslandButton;
|
|
|
|
public int PlayerLevelNeedEnterIsland;
|
|
|
|
public int GachaUnlockNeedPlayerLevel;
|
|
|
|
public float DefaultChatDuration;
|
|
|
|
public string AppstoreUrl;
|
|
|
|
public bool ShouldShowLoadingWheelWhenDisconnectInLevel;
|
|
|
|
public bool IsBlockUserWhenRepeatLogin;
|
|
|
|
public bool IsInviteFeatureEnable;
|
|
}
|
|
}
|