Ejemplo n.º 1
0
    /// <summary>
    /// 선택된 Cell을 설정.
    /// </summary>
    /// <param name="cell"></param>
    public void SetSelectedCell(CellClass cell)
    {
        if (mSelectedCell != null)
        {
            mSelectedCell.ReleaseSelected();
            mSelectedCell.HideBuffArea();
        }

        mSelectedCell = cell;
        if (mSelectedCell != null)
        {
            mSelectedCell.ShowBuffArea();
        }
    }