예제 #1
0
 public void DestroyBindsTo(GridObject obj, bool makeLines = true)
 {
     if (!boundTo.Contains(obj))
     {
         return;
     }
     boundTo.Remove(obj);
     obj.DestroyBindsTo(this);
     if (makeLines)
     {
         FormatLines();
     }
 }