PC-20230316NUNE\Administrator a16d51d033 提交
2024-09-29 20:30:29 +08:00

17 lines
422 B
C#

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