Ejemplo n.º 1
0
 private string GetActiveCubeCount(ISpace space)
 {
     for (int round = 0; round < 6; round++)
     {
         space.Step();
     }
     return(space.GetActivePartsCount().ToString());
 }