import java.awt.Color; public class Cabell extends StationaryObstacle { protected Color natural = Color.magenta; public boolean inTurn = false; public Cabell(){ inTurn=false; } public Color getColor() //Effects: Gets the color for the simulation of the object depending on the //natural color of the object and its current action. { return natural; } public void initializeCabell(){ Grid g = getGrid(); //@nowarn } }