project_files/Android-build/SDL-android-project/src/org/hedgewars/mobile/EngineProtocol/PascalExports.java
author Xeli
Thu, 04 Aug 2011 17:17:21 +0200
branchhedgeroid
changeset 5452 3edc3e3b8cdc
child 5621 ea796c83ea47
permissions -rw-r--r--
Created callbacks to give the frontend information of maxteams/hogs

package org.hedgewars.mobile.EngineProtocol;

public class PascalExports {

	static{
		System.loadLibrary("SDL");
		System.loadLibrary("SDL_image");
		System.loadLibrary("mikmod");
		System.loadLibrary("SDL_net");
		System.loadLibrary("SDL_mixer");
		System.loadLibrary("SDL_ttf");
		System.loadLibrary("lua5.1");
		System.loadLibrary("hwengine");
	}
	
	public static native int HWversionInfoNetProto();
	public static native String HWversionInfoVersion();
	public static native int HWgetNumberOfWeapons();
	public static native int HWgetMaxNumberOfTeams();
	public static native int HWgetMaxNumberOfHogs();
	
}