Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/ConfigBasic.cs
2025-08-13 09:26:42 +08:00

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;
}
}