import objectdraw.*; import java.awt.*; public class Frog { // This should refer to the image of the frog. Note that it is not initialized by // the code we have provided. private VisibleImage frogImage; // Height of the frog image private static final double FROG_HEIGHT = 48; public Frog( ) { } // end Frog constructor public boolean overlaps(VisibleImage vehicleImage) { return false; // YOU NEED TO CHANGE THIS! } // end overlaps public void kill () { } // end kill public void reincarnate() { } // end reincarnate public void hopToward( Location point ) { } // end hopToward public boolean isAlive () { return false; // YOU NEED TO CHANGE THIS! } // end isAlive } // end Frog class