IEnumerator IndicateCell(GridCell cell)
    {
        cell.EnableHighlight(indicator);
        yield return(new WaitForSeconds(.3f));

        cell.DisableHighlight();
    }