public void Start() { Doors.Close(); Engine.Start(); Wheels.Rotate(); }
public Car(Wheels Wheels, Engine Engine, Doors Doors) { this.Wheels = Wheels; this.Engine = Engine; this.Doors = Doors; }