| 1 | ae9d9227 | leszek | ///////////////////////////////////////////////////////////////////////////////////////////////////
 | 
      
        | 2 |  |  | // Copyright 2023 Leszek Koltunski                                                               //
 | 
      
        | 3 |  |  | //                                                                                               //
 | 
      
        | 4 |  |  | // This file is part of Magic Cube.                                                              //
 | 
      
        | 5 |  |  | //                                                                                               //
 | 
      
        | 6 |  |  | // Magic Cube is proprietary software licensed under an EULA which you should have received      //
 | 
      
        | 7 |  |  | // along with the code. If not, check https://distorted.org/magic/License-Magic-Cube.html        //
 | 
      
        | 8 |  |  | ///////////////////////////////////////////////////////////////////////////////////////////////////
 | 
      
        | 9 |  |  | 
 | 
      
        | 10 |  |  | package org.distorted.objectlib.metadata;
 | 
      
        | 11 |  |  | 
 | 
      
        | 12 |  |  | import org.distorted.objectlib.R;
 | 
      
        | 13 |  |  | import org.distorted.objectlib.objects.TwistyCuboid;
 | 
      
        | 14 |  |  | 
 | 
      
        | 15 |  |  | ///////////////////////////////////////////////////////////////////////////////////////////////////
 | 
      
        | 16 |  |  | 
 | 
      
        | 17 |  |  | public class MetadataCuboid333 extends Metadata
 | 
      
        | 18 |  |  |   {
 | 
      
        | 19 |  |  |   public MetadataCuboid333()     { super( TwistyCuboid.class, new int[] {3,3,3}, 0, null ); }
 | 
      
        | 20 |  |  |   public int numScrambles()      { return 17; }
 | 
      
        | 21 |  |  |   public int icon()              { return R.drawable.cube_3; }
 | 
      
        | 22 |  |  |   public int price()             { return 0; }
 | 
      
        | 23 |  |  |   }
 |