Handler.lua 340 B

123456789101112
  1. local ChengjiuLogic = require("chengjiu.ChengjiuLogic")
  2. function CG_CHENGJIU_GET(human,msg)
  3. ChengjiuLogic.getReward(human,msg.taskID)
  4. end
  5. function CG_CHENGJIU_QUERY(human,msg)
  6. ChengjiuLogic.query(human,msg.groupID, msg.type)
  7. end
  8. function CG_CHENGJIU_GO(human, msg)
  9. ChengjiuLogic.chenJiuGo(human, msg.groupID, msg.taskID)
  10. end