ErList = {}
|
|
local ErList = ErList
|
|
ErList.__index = ErList
|
|
|
|
function ErList.New()
|
|
local self = {}
|
|
self.item_list = {}
|
|
|
|
setmetatable(self, ErList)
|
|
return self
|
|
end
|
|
|
|
function ErList:Release()
|
|
self.item_list = {}
|
|
end
|