Remove Lime legacy/hybrid mode

This commit is contained in:
Joshua Granick
2016-05-18 22:17:06 -07:00
parent 6b83072519
commit cf1d25d950
372 changed files with 23 additions and 102728 deletions

View File

@@ -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);