import edu.neu.ccs.gui.*;

public class ExtendedTileBox
    extends TileBox
{
    private int row;
    private int col;
    
    
    public ExtendedTileBox(Object o, int row, int col) {
        super(o);
        this.row = row;
        this.col = col;
    }
    
    
    public int getRow() { return row; }
    
    public int getCol() { return col; }
}
