コード例 #1
0
ファイル: GridCell.cs プロジェクト: dqchess/Tap-Match
 public bool CanSwap(GridCell gCellOther)
 {
     if (!gCellOther)
     {
         return(false);
     }
     if (!gCellOther.IsDraggable())
     {
         return(false);
     }
     if (IsDraggable() && Neighbors.Contain(gCellOther))
     {
         return(true);
     }
     return(false);
 }