Handler.lua 327 B

123456789101112
  1. local DrawCardLogic = require("drawCard.DrawCardLogic")
  2. function CG_DRAWCARD_QUERY(human,msg)
  3. DrawCardLogic.query(human)
  4. end
  5. function CG_DRAWCARD_OP(human,msg)
  6. DrawCardLogic.op(human,msg.id,msg.op, msg.skip,msg.isAct)
  7. end
  8. function CG_DRAWCARD_SKIP_SET(human, msg)
  9. DrawCardLogic.setSkip(human, nil, msg.skip)
  10. end