Files
taptap2024_GJ_chidouren/Assets/Scripts/Game/GameEventCode.cs
2024-10-16 00:03:41 +08:00

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 闪烁次数
}
}