import java.awt.*;

public interface GridThing {
    public void behave(GridSquare[][] g, int x, int y, int m);
    public Color getColor();
}
