blob: 2903c8d1ae244e6bc78b6d07968a953c4273e4a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package cgeo.geocaching;
import android.app.Activity;
public class cg8wrap {
static {
try {
Class.forName("cgeo.geocaching.cg8");
} catch (Exception e) {
throw new RuntimeException(e);
}
}
private cg8 cg8;
public static void check() {
// nothing
}
public cg8wrap(Activity activityIn) {
cg8 = new cg8(activityIn);
}
public int getRotation() {
return cg8.getRotation();
}
}
|