Project

General

Profile

« Previous | Next » 

Revision 85038b84

Added by Leszek Koltunski almost 2 years ago

New UI

View differences:

src/main/java/org/distorted/screens/ScreenList.java
31 31

  
32 32
public enum ScreenList
33 33
  {
34
  PLAY ( null , MODE_ROTATE , new RubikScreenPlay()     ),
35
  SOLV ( PLAY , MODE_ROTATE , new RubikScreenSolving()  ),
36
  PATT ( PLAY , MODE_DRAG   , new RubikScreenPattern()  ),
37
  SVER ( PLAY , MODE_REPLACE, new RubikScreenSolver()   ),
34
  PLAY ( null , MODE_NOTHING, new RubikScreenPlay()     ),
35
  DETA ( PLAY , MODE_NOTHING, new RubikScreenDetails()  ),
36
  SOLV ( DETA , MODE_ROTATE , new RubikScreenSolving()  ),
37
  PATT ( DETA , MODE_DRAG   , new RubikScreenPattern()  ),
38
  SVER ( DETA , MODE_REPLACE, new RubikScreenSolver()   ),
38 39
  SOLU ( SVER , MODE_DRAG   , new RubikScreenSolution() ),
39
  READ ( PLAY , MODE_ROTATE , new RubikScreenReady()    ),
40
  DONE ( PLAY , MODE_DRAG   , new RubikScreenDone()     ),
40
  READ ( DETA , MODE_ROTATE , new RubikScreenReady()    ),
41
  DONE ( DETA , MODE_DRAG   , new RubikScreenDone()     ),
42
  FREE ( DETA , MODE_ROTATE , new RubikScreenFreePlay() ),
41 43
  ;
42 44

  
43 45
  public static final int LENGTH = values().length;

Also available in: Unified diff