/** * Class that represents a turtle which is similar to a Logo turtle. * This class inherts from Turtle and is for students * to add methods to. * * Based on the Turtle class written by: * @author Barb Ericson ericson@cc.gatech.edu */ public class CSE113Turtle extends Turtle { /** * This is the constructor for the turtle. In order * to create a CSE113Turtle, you need to pass in a World, just * like we did when we were creating the other Turtle. * * The details of this constructor works are not important right now. */ public CSE113Turtle (ModelDisplay modelDisplay) { super(modelDisplay); } /////////////////// methods /////////////////////// }