Project

General

Profile

Download (1.31 KB) Statistics
| Branch: | Revision:

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataDino4.java @ ae9d9227

1

    
2
///////////////////////////////////////////////////////////////////////////////////////////////////
3
// Copyright 2023 Leszek Koltunski                                                               //
4
//                                                                                               //
5
// This file is part of Magic Cube.                                                              //
6
//                                                                                               //
7
// Magic Cube is proprietary software licensed under an EULA which you should have received      //
8
// along with the code. If not, check https://distorted.org/magic/License-Magic-Cube.html        //
9
///////////////////////////////////////////////////////////////////////////////////////////////////
10

    
11
package org.distorted.objectlib.metadata;
12

    
13
import org.distorted.objectlib.R;
14
import org.distorted.objectlib.objects.TwistyDino4;
15

    
16
///////////////////////////////////////////////////////////////////////////////////////////////////
17

    
18
public class MetadataDino4 extends Metadata
19
  {
20
  public MetadataDino4()         { super( TwistyDino4.class, new int[] {3,3,3,3}, 0, null ); }
21
  public int numScrambles()      { return 6; }
22
  public int icon()              { return R.drawable.din4_3; }
23
  public int price()             { return 30; }
24
  }
(39-39/91)