Project

General

Profile

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

magiccube / src / main / java / org / distorted / patternui / ScreenAbstract.java @ e9245b7b

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.patternui;
11

    
12
import android.content.SharedPreferences;
13

    
14
///////////////////////////////////////////////////////////////////////////////////////////////////
15

    
16
public abstract class ScreenAbstract
17
  {
18
  abstract void enterScreen(PatternActivity act);
19
  abstract void leaveScreen(PatternActivity act);
20
  public abstract void savePreferences(SharedPreferences.Editor editor);
21
  public abstract void restorePreferences(SharedPreferences preferences);
22
  }
(5-5/7)