Handler.lua 293 B

12345678910111213
  1. local RoleSystemLogic = require("roleSystem.RoleSystemLogic")
  2. function CG_ROLESYSTEM_QUERY(human, msg)
  3. end
  4. function CG_ROLESYSTEM_TOUCH(human, msg)
  5. RoleSystemLogic.touch(human, msg.id)
  6. end
  7. function CG_ROLESYSTEM_OPEN(human, msg)
  8. RoleSystemLogic.open(human, msg.id)
  9. end