Exemplo n.º 1
0
 private bool ChopTree2(LogicJack jack, LogicTree logicTree, bool directly = true)
 {
     if (logicTree.BeingChopped(jack, directly))
     {
         cellControl[logicTree.x, logicTree.y] = null;
         logicTree.Flush(this);
         return(true);
     }
     return(false);
 }