13 lines
286 B
Plaintext
13 lines
286 B
Plaintext
autoImport("BaseItemCell");
|
|
EquipItemCell = class("EquipItemCell", BaseItemCell);
|
|
|
|
function EquipItemCell:Init()
|
|
self:FindObjs();
|
|
self:AddCellClickEvent();
|
|
self:AddCellDoubleClickEvt();
|
|
end
|
|
|
|
function EquipItemCell:SetData(data)
|
|
self.data = data;
|
|
self.super.SetData(self, data);
|
|
end |