Handler.lua 929 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. local WarReportLogic = require("warReport.WarReportLogic")
  2. -- ��ѯ
  3. function CG_WAR_REPORT_QUERY(human, msg)
  4. WarReportLogic.query(human, msg.type, msg.questType)
  5. end
  6. -- �ط�
  7. function CG_WAR_REPORT_PLAY_BACK(human, msg)
  8. WarReportLogic.playBack(human, msg.type, msg.id, msg.nServerIndex)
  9. end
  10. -- ����
  11. function CG_WAR_REPORT_SHARE(human, msg)
  12. WarReportLogic.share(human, msg.type, msg.id, msg.chatType)
  13. end
  14. -- �ղ�
  15. function CG_WAR_REPORT_COLLECT(human, msg)
  16. WarReportLogic.collect(human, msg.type, msg.id, msg.op)
  17. end
  18. -- ����
  19. function CG_WAR_REPORT_ADMIRE(human, msg)
  20. WarReportLogic.admire(human, msg.type, msg.id)
  21. end
  22. -- �鿴�˺���¼
  23. function CG_WAR_REPROT_HARM(human, msg)
  24. WarReportLogic.harm(human, msg.type, msg.id)
  25. end
  26. function CG_WAR_REPROT_ADMIRE_BY_ONETOUCH(human, msg)
  27. WarReportLogic.AdmireByOneTouch(human)
  28. end