HttpGMComponent.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. namespace ET
  2. {
  3. public class HttpGMComponent : Entity, IAwake, IDestroy
  4. {
  5. public H2N_AddSystemNotice H2N_AddSystemNotice = new H2N_AddSystemNotice();
  6. public H2N_RemoveSystemNotice H2N_RemoveSystemNotice = new H2N_RemoveSystemNotice();
  7. public H2Mail_AddMail H2Mail_AddMail = new H2Mail_AddMail();
  8. public H2Mail_RemoveMail H2Mail_RemoveMail = new H2Mail_RemoveMail();
  9. public H2M_GetOnlineCount H2M_GetOnlineCount = new H2M_GetOnlineCount();
  10. public H2A_GetRoleInfo H2A_GetRoleInfo = new H2A_GetRoleInfo();
  11. public H2A_SetLoginStatus H2A_SetLoginStatus = new H2A_SetLoginStatus();
  12. public H2Other_ReloadHotfixDll H2Other_ReloadHotfixDll = new H2Other_ReloadHotfixDll();
  13. public H2Other_ReloadSqliteConfig H2Other_ReloadSqliteConfig = new H2Other_ReloadSqliteConfig();
  14. public H2Other_ReloadStartConfig H2Other_ReloadStartConfig = new H2Other_ReloadStartConfig();
  15. public H2Other_ReloadHotfixWords H2Other_ReloadHotfixWords = new H2Other_ReloadHotfixWords();
  16. public H2G_KickAllPlayers H2G_KickAllPlayers = new H2G_KickAllPlayers();
  17. public H2A_IpBan H2A_IpBan = new H2A_IpBan();
  18. public H2A_AccountBan H2A_AccountBan = new H2A_AccountBan();
  19. public H2A_AccountWhite H2A_AccountWhite = new H2A_AccountWhite();
  20. public H2A_OpenServerType H2A_OpenServerType = new H2A_OpenServerType();
  21. public C2S_GetLeagueInfo H2S_GetLeagueInfo = new C2S_GetLeagueInfo();
  22. public H2A_AccountWh H2A_AccountWh = new H2A_AccountWh();
  23. }
  24. }