bingo 项目提交
This commit is contained in:
@@ -0,0 +1,290 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace BingoBrain
|
||||
{
|
||||
public partial class Preferences
|
||||
{
|
||||
public int currency101=50;
|
||||
|
||||
|
||||
public int max101;
|
||||
|
||||
|
||||
public long nextNewDayTime;
|
||||
|
||||
public long ballonCdTime;
|
||||
|
||||
|
||||
public int toDayMaxScore;
|
||||
|
||||
|
||||
public int historyMaxScore;
|
||||
|
||||
|
||||
public string playerName;
|
||||
|
||||
|
||||
public string code;
|
||||
|
||||
|
||||
public int playerAvatarId=1;
|
||||
|
||||
|
||||
public int ticketGameNum;
|
||||
|
||||
|
||||
public int moneyGameNum;
|
||||
|
||||
|
||||
public int loginDay;
|
||||
|
||||
|
||||
public int watchVideoBeginSum;
|
||||
|
||||
|
||||
public int active;
|
||||
|
||||
|
||||
public decimal currency102;
|
||||
|
||||
|
||||
public decimal max102;
|
||||
|
||||
|
||||
public List<bool> dailyTaskState;
|
||||
|
||||
|
||||
public List<bool> dailyTaskActiveState;
|
||||
|
||||
|
||||
public List<Task> activeMissions;
|
||||
|
||||
|
||||
public List<int> finishTaskList;
|
||||
|
||||
|
||||
public List<long> signState;
|
||||
|
||||
|
||||
public List<int> completeGuideList;
|
||||
|
||||
public bool isResetGuide;
|
||||
|
||||
|
||||
public int watchVideoSum;
|
||||
|
||||
|
||||
public bool isOpenedInvite;
|
||||
|
||||
public bool isGod;
|
||||
|
||||
|
||||
public bool isGuideFinish;
|
||||
|
||||
#region FaceBook登录
|
||||
|
||||
public string facebookId;
|
||||
|
||||
|
||||
public string facebookName;
|
||||
|
||||
|
||||
public string facebookAvatarUrl;
|
||||
|
||||
|
||||
public bool isFaceBookLogin;
|
||||
|
||||
#endregion
|
||||
|
||||
public bool isShowRewardFly101 = false;
|
||||
public bool isShowRewardFly102 = false;
|
||||
public bool isShowRewardFly105 = false;
|
||||
public bool isShowRewardFly106 = false;
|
||||
|
||||
#region 转盘
|
||||
|
||||
public int thisDayWatchSlyderVideoNum;
|
||||
|
||||
#endregion
|
||||
|
||||
#region 内购
|
||||
|
||||
public List<int> realIssueIdLst;
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
public bool isPayBind;
|
||||
|
||||
|
||||
public string paypalAccount;
|
||||
|
||||
|
||||
public bool isSuccessRedeem;
|
||||
|
||||
|
||||
public bool isOpenRedeem = false;
|
||||
|
||||
|
||||
public int gameOfCount;
|
||||
|
||||
|
||||
public int initPropFireCountUsed;
|
||||
|
||||
|
||||
public int initPropBombCountUsed;
|
||||
|
||||
#region 兑换
|
||||
|
||||
public bool exchangeBindGuide;
|
||||
|
||||
|
||||
public string exchangeAccount;
|
||||
|
||||
|
||||
public string exchangeName;
|
||||
|
||||
|
||||
public string exchangeCoinAccount;
|
||||
|
||||
|
||||
public string exchangeCoinFName;
|
||||
|
||||
|
||||
public string exchangeCoinLName;
|
||||
|
||||
|
||||
public string exchangeMailbox;
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
public int clearBubbleCount;
|
||||
|
||||
|
||||
public int usePropCount;
|
||||
|
||||
|
||||
public int winLeftExtraBallCount;
|
||||
|
||||
|
||||
public bool isRateUs;
|
||||
|
||||
|
||||
public int dailyTaskWinCount;
|
||||
|
||||
public bool isOpenedRealGift;
|
||||
|
||||
|
||||
public decimal webViewOnlineTime;
|
||||
|
||||
|
||||
public bool isClickH5Icon;
|
||||
|
||||
|
||||
public bool isShowOpenReward = false;
|
||||
|
||||
|
||||
public int openRewardCount = 0;
|
||||
|
||||
public bool isRealProcessing;
|
||||
|
||||
|
||||
public int realWatchVideo;
|
||||
|
||||
|
||||
public bool isEditInviteCode = false;
|
||||
|
||||
public decimal webViewMakeUpOnlineTime;
|
||||
|
||||
public decimal webViewADTaskOnlineTime;
|
||||
|
||||
public List<int> withdrawGear;
|
||||
|
||||
|
||||
public long adCashFlyShowTime;
|
||||
|
||||
|
||||
public int cardBoardIndex;
|
||||
|
||||
|
||||
public int bingoSum;
|
||||
|
||||
|
||||
public bool isFirstBingo = true;
|
||||
|
||||
|
||||
public bool isFirstComboBingo = true;
|
||||
|
||||
|
||||
public bool isCompleteFirstGame;
|
||||
|
||||
|
||||
public bool isFirstPropFull = true;
|
||||
|
||||
|
||||
public int gameSum;
|
||||
|
||||
#region 转盘
|
||||
|
||||
public bool isOnceWheel;
|
||||
|
||||
|
||||
public List<float> ferrWheelLst;
|
||||
|
||||
|
||||
public List<float> videlWheelLst;
|
||||
|
||||
|
||||
public string wheelVersion;
|
||||
|
||||
|
||||
public long nextOpenWheelStampTime;
|
||||
|
||||
#endregion
|
||||
|
||||
#region 签到模块
|
||||
|
||||
public long openDailyBonusStampTime;
|
||||
|
||||
#endregion
|
||||
|
||||
#region 统计
|
||||
|
||||
public Dictionary<string, bool> statisticDictionary;
|
||||
public Dictionary<int, bool> statisticMakeupDictionary;
|
||||
public List<int> statisticCashTarget;
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
public long nextRecoveryTime;
|
||||
|
||||
|
||||
public int cardBoardSum = -1;
|
||||
|
||||
|
||||
public bool isFirstSlot = true;
|
||||
|
||||
|
||||
public bool isFirstBox = true;
|
||||
|
||||
|
||||
public bool isSecondEndShow = true;
|
||||
|
||||
|
||||
public int sum777;
|
||||
|
||||
|
||||
public Dictionary<long, int> bankDic;
|
||||
|
||||
|
||||
public List<DailyBonusItem> dailyBonusItemLst;
|
||||
public int h5StayTime;
|
||||
public decimal makeupTaskH5Time;
|
||||
|
||||
public List<MakeupTaskData> makeupTaskHistory;
|
||||
public List<MakeupTaskData> coinMakeupTaskHistory;
|
||||
public decimal coinMakeupTaskH5Time;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user