Project

General

Profile

Download (1.87 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / java / org / distorted / solvers / pduo / SolverPyraminxDuo.java @ 420eb96d

1
///////////////////////////////////////////////////////////////////////////////////////////////////
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.solvers.pduo;
11

    
12
import android.content.res.Resources;
13

    
14
import org.distorted.objectlib.main.TwistyObject;
15
import org.distorted.solvers.SolverTablebase;
16

    
17
///////////////////////////////////////////////////////////////////////////////////////////////////
18

    
19
public class SolverPyraminxDuo extends SolverTablebase
20
{
21
  private int mErrorID;
22

    
23
///////////////////////////////////////////////////////////////////////////////////////////////////
24

    
25
  public SolverPyraminxDuo(Resources res, TwistyObject object)
26
    {
27
    super(res,object);
28
    }
29

    
30
///////////////////////////////////////////////////////////////////////////////////////////////////
31
// TODO
32
  public String constructError()
33
    {
34
    return null;
35
    }
36

    
37
///////////////////////////////////////////////////////////////////////////////////////////////////
38
// TODO
39
  public int[] prepareQuats(TwistyObject object)
40
    {
41
    return null;
42
    }
43

    
44
///////////////////////////////////////////////////////////////////////////////////////////////////
45
// TODO
46
  public String solution(int[] quats, Resources res)
47
    {
48
    return null;
49
    }
50
}  
51

    
    (1-1/1)