CrownLib.java 288 B

123456789101112131415
  1. package crown.android;
  2. import android.content.res.AssetManager;
  3. public class CrownLib
  4. {
  5. static
  6. {
  7. System.loadLibrary("crown");
  8. }
  9. public static native void initAssetManager(AssetManager assetManager);
  10. public static native void pushEvent(int type, int a, int b, int c, int d);
  11. }