118 lines
3.3 KiB
C#
118 lines
3.3 KiB
C#
// ***********************************************************************
|
|
// Assembly : Game
|
|
// Author : Kimch
|
|
// Created : 2021-03-10
|
|
// Description :
|
|
// Last Modified By :
|
|
// Last Modified On :
|
|
// ***********************************************************************
|
|
// <copyright file= "RedPointConst" company="Kunpo"></copyright>
|
|
// <summary></summary>
|
|
// ***********************************************************************
|
|
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace G
|
|
{
|
|
public enum RedPointType
|
|
{
|
|
None,
|
|
ChaPanel,
|
|
ShopPanel,
|
|
KungfuPanel,
|
|
Home,
|
|
Chat,
|
|
Activity,
|
|
Mission,
|
|
Title,
|
|
Pet,
|
|
BattlePass,
|
|
Mail,
|
|
Extend,//扩展功能
|
|
World,
|
|
Notice,
|
|
Vip,
|
|
FirstPay,
|
|
//Woman,//女神节
|
|
Function,//功能解锁奖励
|
|
ActivityBox,//活动栏
|
|
QingMing,//清明节
|
|
}
|
|
|
|
public class RedPointConst
|
|
{
|
|
public static string Cha = "Cha";
|
|
public static string ChaFull = "Cha.Full";
|
|
|
|
public static string Shop = "Shop";
|
|
/// <summary>
|
|
/// Shop.Free1
|
|
/// </summary>
|
|
public static string ShopCollect = "Shop.Free1";
|
|
/// <summary>
|
|
/// Shop.Free2
|
|
/// </summary>
|
|
public static string ShopRefresh = "Shop.Free2";
|
|
/// <summary>
|
|
/// Shop.Free3
|
|
/// </summary>
|
|
public static string ShopSpeedUp = "Shop.Free3";
|
|
/// <summary>
|
|
/// Shop.Free4
|
|
/// </summary>
|
|
public static string ShopCommon = "Shop.Free4";
|
|
|
|
public static string Kungfu = "Kungfu";
|
|
public static string KungfuBook = "Kungfu.Book";
|
|
|
|
public static string World = "World";
|
|
public static string Home = "Home";
|
|
|
|
public static string Title = "Title";
|
|
public static string TitleStudy = "Title.Study";
|
|
|
|
public static string Pet = "Pet";
|
|
|
|
public static string Mission = "Mission";
|
|
public static string MissionAch = "Mission.Ach";
|
|
public static string MissionDay = "Mission.Day";
|
|
|
|
public static string Activity = "Activity";
|
|
public static string ActivitySevenSign = "Activity.SevenSign";
|
|
public static string ActivityFreeEnery = "Activity.FreeEnery";
|
|
|
|
public static string BattlePass = "BattlePass";
|
|
public static string BattlePassMission = "BattlePass.Mission";
|
|
public static string BattlePassReward = "BattlePass.Reward";
|
|
public static string BattlePassActivation = "BattlePass.Activation";
|
|
public static string BattlePassMissionAndReward = "BattlePass.MissionAndReward";
|
|
|
|
public static string Mail = "Mail";
|
|
public static string Extend = "Extend";
|
|
|
|
public static string Notice = "Notice";
|
|
public static string Vip = "Vip";
|
|
|
|
public static string FirstPay = "FirstPay";
|
|
|
|
//public static string Woman = "Woman"; //女神节
|
|
//public static string WomanSign = "Woman.Sign";
|
|
//public static string WomanExchange = "Woman.Exchange";
|
|
//public static string WomanGift = "Woman.Gift";
|
|
//public static string WomanMission = "Woman.Mission";
|
|
|
|
public static string QingMing = "QingMing";
|
|
public static string QingMingSign = "QingMing.Sign";
|
|
public static string QingMingExchange = "QingMing.Exchange";
|
|
public static string QingMingGift = "QingMing.Gift";
|
|
public static string QingMingRecharge = "QingMing.Recharge";
|
|
public static string QingMingMission = "QingMing.Mission";
|
|
|
|
public static string Function = "Function";
|
|
|
|
public static string ActivityBox = "ActivityBox";
|
|
}
|
|
}
|