project_files/Android-build/SDL-android-project/src/org/hedgewars/mobile/EngineProtocol/PascalExports.java
branchhedgeroid
changeset 5452 3edc3e3b8cdc
child 5621 ea796c83ea47
equal deleted inserted replaced
5450:1ea879a6f89f 5452:3edc3e3b8cdc
       
     1 package org.hedgewars.mobile.EngineProtocol;
       
     2 
       
     3 public class PascalExports {
       
     4 
       
     5 	static{
       
     6 		System.loadLibrary("SDL");
       
     7 		System.loadLibrary("SDL_image");
       
     8 		System.loadLibrary("mikmod");
       
     9 		System.loadLibrary("SDL_net");
       
    10 		System.loadLibrary("SDL_mixer");
       
    11 		System.loadLibrary("SDL_ttf");
       
    12 		System.loadLibrary("lua5.1");
       
    13 		System.loadLibrary("hwengine");
       
    14 	}
       
    15 	
       
    16 	public static native int HWversionInfoNetProto();
       
    17 	public static native String HWversionInfoVersion();
       
    18 	public static native int HWgetNumberOfWeapons();
       
    19 	public static native int HWgetMaxNumberOfTeams();
       
    20 	public static native int HWgetMaxNumberOfHogs();
       
    21 	
       
    22 }