Ejemplo n.º 1
0
 public static void Detach(IMyPistonBase block)
 {
     if (block.IsAttached)
     {
         block.Detach();
     }
 }
Ejemplo n.º 2
0
 private static void FinalizeAttach(IMyPistonBase block)
 {
     if (!block.IsAttached)
     {
         block.Detach();
     }
 }