Last active
December 18, 2015 23:49
-
-
Save jrgleason/5864721 to your computer and use it in GitHub Desktop.
Native JNI Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.gleason.gl.nat; | |
| public class Native { | |
| static | |
| { | |
| System.loadLibrary("box2D"); | |
| System.loadLibrary("testand"); | |
| } | |
| public static native void init(); | |
| public static native void resize(int width, int height); | |
| public static native void render(); | |
| public static native void moveX(float x); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment