Project

General

Profile

« Previous | Next » 

Revision e3900503

Added by Leszek Koltunski about 5 years ago

Rename all the classes that are not exported to application to 'Internal'

View differences:

src/main/java/org/distorted/examples/rubik/RubikActivity.java
1 1
///////////////////////////////////////////////////////////////////////////////////////////////////
2 2
// Copyright 2019 Leszek Koltunski                                                               //
3 3
//                                                                                               //
4
// This file is part of Distorted.                                                               //
4
// This file is part of DistortedLibrary.                                                               //
5 5
//                                                                                               //
6
// Distorted is free software: you can redistribute it and/or modify                             //
6
// DistortedLibrary is free software: you can redistribute it and/or modify                             //
7 7
// it under the terms of the GNU General Public License as published by                          //
8 8
// the Free Software Foundation, either version 2 of the License, or                             //
9 9
// (at your option) any later version.                                                           //
10 10
//                                                                                               //
11
// Distorted is distributed in the hope that it will be useful,                                  //
11
// DistortedLibrary is distributed in the hope that it will be useful,                                  //
12 12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13 13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14 14
// GNU General Public License for more details.                                                  //
15 15
//                                                                                               //
16 16
// You should have received a copy of the GNU General Public License                             //
17
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
17
// along with DistortedLibrary.  If not, see <http://www.gnu.org/licenses/>.                            //
18 18
///////////////////////////////////////////////////////////////////////////////////////////////////
19 19

  
20 20
package org.distorted.examples.rubik;
......
26 26
import android.widget.TextView;
27 27

  
28 28
import org.distorted.examples.R;
29
import org.distorted.library.main.Distorted;
29
import org.distorted.library.main.DistortedLibrary;
30 30

  
31 31
///////////////////////////////////////////////////////////////////////////////////////////////////
32 32

  
......
53 53
      {
54 54
      GLSurfaceView view = findViewById(R.id.rubikSurfaceView);
55 55
      view.onPause();
56
      Distorted.onPause();
56
      DistortedLibrary.onPause();
57 57
      super.onPause();
58 58
      }
59 59

  
......
72 72
    @Override
73 73
    protected void onDestroy() 
74 74
      {
75
      Distorted.onDestroy();  
75
      DistortedLibrary.onDestroy();
76 76
      super.onDestroy();
77 77
      }
78 78

  

Also available in: Unified diff