Exemplo n.º 1
0
 bool CheckForPortal()
 {
     for (int i = 0; i < myPathManager.GetPortals.Count; i++)
     {
         if (myPathManager.CheckPlacement(myInputCoordinates, myPathManager.GetPortals[i].myStartTile))
         {
             return(true);
         }
     }
     return(false);
 }