local Component = Class() Component.gameobject = AsuraEngine.Type.GameObject function Component:Ctor(go) self.gameobject = go end function Component:OnEvent(e) end function Component:OnUpdate(ms) end function Component:OnDraw() end return Component