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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5452
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
     1
package org.hedgewars.mobile.EngineProtocol;
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
     2
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
     3
public class PascalExports {
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
     4
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
     5
	static{
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
     6
		System.loadLibrary("SDL");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
     7
		System.loadLibrary("SDL_image");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
     8
		System.loadLibrary("mikmod");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
     9
		System.loadLibrary("SDL_net");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    10
		System.loadLibrary("SDL_mixer");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    11
		System.loadLibrary("SDL_ttf");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    12
		System.loadLibrary("lua5.1");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    13
		System.loadLibrary("hwengine");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    14
	}
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    15
	
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    16
	public static native int HWversionInfoNetProto();
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    17
	public static native String HWversionInfoVersion();
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    18
	public static native int HWgetNumberOfWeapons();
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    19
	public static native int HWgetMaxNumberOfTeams();
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    20
	public static native int HWgetMaxNumberOfHogs();
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    21
	
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    22
}