import java.awt.*;

public class GridDirt implements GridThing {

    public void behave(GridSquare[][] g, int mx, int my, int move){

    }

    public Color getColor(){
	return Color.black;
    }
}
