コード例 #1
0
ファイル: CubeModel.cs プロジェクト: ARLM-Attic/rubiks-cube
 public void Random()
 {
     string[] ops = CubeOperations.GetRandomOps(10);
     foreach (string op in ops)
     {
         Rotate(op);
     }
 }