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