Remove Lime legacy/hybrid mode
This commit is contained in:
@@ -7,33 +7,8 @@ public class Lime {
|
||||
|
||||
System.loadLibrary("lime");
|
||||
|
||||
::if DEFINE_LIME_HYBRID::
|
||||
System.loadLibrary("lime-legacy");
|
||||
::end::
|
||||
|
||||
}
|
||||
|
||||
::if DEFINE_LIME_HYBRID::
|
||||
public static final int ACTIVATE = 1;
|
||||
public static final int DEACTIVATE = 2;
|
||||
public static final int DESTROY = 3;
|
||||
public static native int onDeviceOrientationUpdate (int orientation);
|
||||
public static native int onNormalOrientationFound (int orientation);
|
||||
public static native int onOrientationUpdate (float x, float y, float z);
|
||||
public static native int onAccelerate (float x, float y, float z);
|
||||
public static native int onTouch (int type, float x, float y, int id, float sizeX, float sizeY);
|
||||
public static native int onResize (int width, int height);
|
||||
public static native int onContextLost ();
|
||||
public static native int onTrackball (float x, float y);
|
||||
public static native int onJoyChange (int inDeviceID, int inCode, boolean inIsDown);
|
||||
public static native int onJoyMotion (int inDeviceID, int axis, float value);
|
||||
public static native int onKeyChange (int inKeyCode, int inCharCode, boolean inIsDown);
|
||||
public static native int onRender ();
|
||||
public static native int onPoll ();
|
||||
public static native double getNextWake ();
|
||||
public static native int onActivity (int inState);
|
||||
::end::
|
||||
|
||||
public static native void onCallback (long inHandle);
|
||||
public static native Object callObjectFunction (long inHandle, String function, Object[] args);
|
||||
public static native double callNumericFunction (long inHandle, String function, Object[] args);
|
||||
|
||||
Reference in New Issue
Block a user