NewLogic.lua 224 B

1234567891011
  1. local Msg = require("core.Msg")
  2. function NewProto(human,type,param)
  3. print("newProto:",type,param)
  4. local msgRet = Msg.gc.GC_ROLE_CHANGE_BASEINFO
  5. msgRet.ret = type
  6. msgRet.tip = "test data"
  7. Msg.send(msgRet,human.fd)
  8. end