SysEvents.cs 467 B

12345678910111213141516171819202122
  1. using UnityEngine;
  2. using System.Collections;
  3. public class SysEvents {
  4. public const string NET_FINISH = "net_finish";
  5. public const string ON_LOGIN = "on_login";
  6. public const string ON_LOGOUT = "on_logout";
  7. public const string ON_MSG = "on_msg";
  8. public const string ON_PVP_MONITOR = "on_pvp_monitor";
  9. public const string ON_PVE_START = "on_pve_start";
  10. public const string ON_PVE_END = "on_pvp_end";
  11. public const string LANGUAGE = "Chinese";
  12. }