bag.lua 316 B

12345678910111213141516171819
  1. --[[
  2. Descripttion:接口 - 背包
  3. version:
  4. Author: Neo,Huang
  5. Date: 2022-07-05 17:32:01
  6. LastEditors: Neo,Huang
  7. LastEditTime: 2022-07-05 20:29:29
  8. --]]
  9. local code = require "code"
  10. local root = {}
  11. -- 获取背包信息
  12. function root:bag_get_info(role, msg)
  13. return role.bag:itf_get_info(role, msg)
  14. end
  15. return root