DESKTOP-5RP3AKU\Jisol e77dd9e841 提交
2024-11-24 19:33:12 +08:00

17 lines
430 B
C#

namespace Samples.AppGame
{
public class GEvent
{
/// <summary>
/// 网络 : 有新的Tile服务器
/// </summary>
public static readonly string NetNewTileServer = "NetNewTileServer";
/// <summary>
/// 游戏 : 切换角色所在的Tile区块
/// </summary>
public static readonly string GSwPlayerTile = "GSwPlayerTile";
}
}