///
/// FairyGUI事件常量管理
///
public static class FGUIEventConst
{
///
/// 服务器选择相关事件
///
public static class Server
{
///
/// 服务器被选择事件
///
public const string SELECTED = "EVENT_SERVER_SELECTED";
}
///
/// 登录相关事件
///
public static class Login
{
///
/// 登录成功事件
///
public const string SUCCESS = "EVENT_LOGIN_SUCCESS";
///
/// 登录失败事件
///
public const string FAILED = "EVENT_LOGIN_FAILED";
}
///
/// 界面通用事件
///
public static class Common
{
///
/// 界面打开事件
///
public const string PANEL_OPEN = "EVENT_PANEL_OPEN";
///
/// 界面关闭事件
///
public const string PANEL_CLOSE = "EVENT_PANEL_CLOSE";
}
}