12 lines
		
	
	
		
			195 B
		
	
	
	
		
			Java
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			195 B
		
	
	
	
		
			Java
		
	
	
		
			Executable File
		
	
	
	
	
package fishrungames.doublehitballs;
 | 
						|
 | 
						|
public class JniWrapper
 | 
						|
{
 | 
						|
    static {
 | 
						|
        System.loadLibrary("DoubleHitBalls");
 | 
						|
    }
 | 
						|
 | 
						|
   
 | 
						|
    public static native void Init(int width, int height);
 | 
						|
 | 
						|
} |