源战役客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
216 B

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