import objectdraw.*; import java.awt.*; public class Vehicle extends ActiveObject { public Vehicle( ) { // insert code to construct the vehicle here start(); } // end Vehicle constructor public void run() { } // end run } // end Vehicle class