You've already forked taptap2024_GJ_chidouren
21 lines
674 B
C#
21 lines
674 B
C#
namespace Game
|
|
{
|
|
public static class GameEventCode
|
|
{
|
|
#region 系统事件
|
|
|
|
public const int PropTip = 10000; //通用提示, string 提示内容
|
|
public const int Prop2Tip = 10003; //通用提示, string 提示内容
|
|
public const int AddGold = 10004; //获得金币 int 金币数量
|
|
|
|
#endregion
|
|
|
|
|
|
public const int Update_View = 100000; //更新显示层
|
|
public const int Update_Price = 100001; //更新货币显示层
|
|
public const int ResetGameView = 100002; //重置刷新信号
|
|
|
|
public const int OnScreenFlicker = 200005; //屏幕闪烁 int 闪烁次数
|
|
|
|
}
|
|
} |