local Component = { object = nil } Component.new = function(obj) local component = {} setmetatable(component, Component) Component.__index = Component component:_init(obj) end Component._init = function(self, obj) self.object = obj end Component.update = function(dt) end return Component