```class Car() : MovingObjects{ fun engine(): Engine fun wheel(): Wheel fun doors():Door...
i
Copy code
class Car() : MovingObjects{
    fun engine(): Engine
    fun wheel(): Wheel
    fun doors():Doors
    fun switchOn()
    fun maxVelocity():Int
    //TODO other 1000 methods
}