--[[ Descripttion:接口 - 背包 version: Author: Neo,Huang Date: 2022-07-05 17:32:01 LastEditors: Neo,Huang LastEditTime: 2022-07-05 20:29:29 --]] local code = require "code" local root = {} -- 获取背包信息 function root:bag_get_info(role, msg) return role.bag:itf_get_info(role, msg) end -- 分解 function root:bag_exchange(role, msg) return role.bag:itf_exchange(role, msg) end -- 提取 function root:bag_draw(role, msg) return role.bag:itf_draw(role, msg) end return root