//--------------------------------------------------------
|
// [Author]: 玩个游戏
|
// [ Date ]: Thursday, November 16, 2017
|
//--------------------------------------------------------
|
|
|
|
public class MainRedDot : Singleton<MainRedDot>
|
{
|
//主界面
|
public const int MainAffairsRedpoint = 1; //内政
|
public Redpoint redpointAffairs = new Redpoint(MainAffairsRedpoint);
|
public const int MainHerosRedpoint = 2; //武将
|
public Redpoint redpointHeros = new Redpoint(MainHerosRedpoint);
|
public const int MainChallengeRedpoint = 3; //挑战
|
public Redpoint redpointChallenge = new Redpoint(MainChallengeRedpoint);
|
public const int MainGuildRedpoint = 4; //公会
|
public Redpoint redpointGuild = new Redpoint(MainGuildRedpoint);
|
|
|
public const int RedPoint_key = 11;
|
public const int FAIRY_REDPOINT_KEY1 = 107;
|
public const int RedPoint_UpFuncBase = 12;
|
|
private Redpoint rightTopRedpint = new Redpoint(RedPoint_UpFuncBase);
|
private Redpoint redPointStrePrentOne = new Redpoint(RedPoint_key);
|
|
|
//public Redpoint jadeDynastyRedpoint = new Redpoint(1, 117);
|
|
#region 邮件红点
|
public const int RedPoint_MainMailKey = 24;
|
public const int RedPoint_MailFuncKey = 2401;
|
public Redpoint redpointMainMail = new Redpoint(RedPoint_MainMailKey);
|
public Redpoint redpointMailFunc = new Redpoint(RedPoint_MainMailKey, RedPoint_MailFuncKey);
|
#endregion
|
|
#region 好友红点
|
public const int RedPoint_FriendQuestKey = 26;
|
public const int RedPoint_FriendChatKey = 25; //好友
|
public Redpoint redpointFriendQuest = new Redpoint(RedPoint_FriendQuestKey);
|
public Redpoint redPointFriendChat = new Redpoint(RedPoint_FriendChatKey);
|
#endregion
|
|
#region 背包红点
|
public const int RedPoint_MainPackKey = 102;
|
public const int RedPoint_BagFuncKey = 10201;
|
public const int RedPoint_DepotFuncKey = 10204;
|
public Redpoint redPointMainPack = new Redpoint(RedPoint_MainPackKey);
|
public Redpoint redPointBagFunc = new Redpoint(RedPoint_MainPackKey, RedPoint_BagFuncKey);
|
public Redpoint redPointDepotFunc = new Redpoint(RedPoint_MainPackKey, RedPoint_DepotFuncKey);
|
#endregion
|
|
|
|
|
#region 仙盟公用红点
|
public const int FAIRY_REDPOINT_KEY2 = 10701;
|
public Redpoint fairyLaunch = new Redpoint(RedPoint_key, FAIRY_REDPOINT_KEY1);
|
public Redpoint fairyBaseFuncRedPoint = new Redpoint(FAIRY_REDPOINT_KEY1, FAIRY_REDPOINT_KEY2);
|
#endregion
|
|
|
|
#region 仙盟商店红点
|
public const int FAIRYStore_REDPOINT_KEY3 = 1070106;
|
public Redpoint fairyStoreRedPoint = new Redpoint(FAIRY_REDPOINT_KEY2, FAIRYStore_REDPOINT_KEY3);
|
#endregion
|
|
|
|
|
#region 开服活动红点
|
public const int REDPOINT_OPENSERVER = 209;
|
public Redpoint openServerRedpoint = new Redpoint(REDPOINT_OPENSERVER);
|
|
//280 开头用于节日祝福
|
public const int RedPoint_HolidayWishes = 280;
|
public Redpoint holidayWishesRedpoint = new Redpoint(RedPoint_HolidayWishes);
|
|
#endregion
|
public const int REDPOINT_OPENRANK = 258;
|
public Redpoint openRankRedpoint = new Redpoint(REDPOINT_OPENRANK);
|
#region 仙盟活动红点
|
public readonly Redpoint fairyActivityRedpoint = new Redpoint(218);
|
#endregion
|
|
public static int DailySpecialsRedpoint = 439; //每日特惠入口红点
|
|
public static int BlessedLandRedpoint = 444; //福地红点
|
public const int CustomizedGiftRedpoint = 448; //自选礼包
|
public const int LoginZhanLingRedpoint = 449; //登录战令
|
public const int PhantasmPavilionRepoint = 459; //幻境阁
|
public const int FairyEmbleManageRepoint = 462;//仙盟徽章管理入口红点
|
public const int CycleHallRepoint = 463; //轮回殿
|
public const int YunShiRepoint = 464; //运势
|
public const int LianQiRepoint = 465; //仙匠大会
|
public const int FairySiegeRepoint = 466; //仙盟攻城战
|
public const int MailRepoint = 467; //邮箱
|
|
|
|
|
public void Register()
|
{
|
|
}
|
|
|
|
|
}
|
|
|
|