29 lines
614 B
Lua
29 lines
614 B
Lua
------------------------------------------------
|
|
--作者: 杨全福
|
|
--日期: 2020-08-20
|
|
--文件: YYHDItem.lua
|
|
--模块: YYHDItem
|
|
--描述: 运营活动物品
|
|
------------------------------------------------
|
|
|
|
local YYHDItemData = {
|
|
--物品ID
|
|
ItemID = 0,
|
|
--物品数量
|
|
ItemCount = 0,
|
|
--需要职业
|
|
Occ = 0,
|
|
--是否绑定
|
|
IsBind = false,
|
|
}
|
|
|
|
function YYHDItemData:New(itemTable)
|
|
local _m = Utils.DeepCopy(self)
|
|
_m.ItemID = itemTable.i
|
|
_m.ItemCount = itemTable.n
|
|
_m.Occ = itemTable.c
|
|
_m.IsBind = itemTable.b ~= 0
|
|
return _m
|
|
end
|
|
|
|
return YYHDItemData |