List = {} List.__index = List function List:New(t) local o = {itemType = t} setmetatable(o, self) return o end function List:Add(item) ...
確定! 回上一頁