project_files/Android-build/SDL-android-project/src/org/hedgewars/mobile/EngineProtocol/PascalExports.java
author Xeli
Sun, 21 Aug 2011 16:25:18 +0200
branchhedgeroid
changeset 5621 ea796c83ea47
parent 5452 3edc3e3b8cdc
child 6035 bdd0528ee8a6
permissions -rw-r--r--
added licenses
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5621
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
     1
/*
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
     2
 * Hedgewars for Android. An Android port of Hedgewars, a free turn based strategy game
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
     3
 * Copyright (c) 2011 Richard Deurwaarder <xeli@xelification.com>
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
     4
 *
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
     8
 *
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
    12
 * GNU General Public License for more details.
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
    13
 *
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
    14
 * You should have received a copy of the GNU General Public License
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
    15
 * along with this program; if not, write to the Free Software
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
    17
 */
ea796c83ea47 added licenses
Xeli
parents: 5452
diff changeset
    18
5452
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    19
package org.hedgewars.mobile.EngineProtocol;
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    20
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    21
public class PascalExports {
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    22
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    23
	static{
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    24
		System.loadLibrary("SDL");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    25
		System.loadLibrary("SDL_image");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    26
		System.loadLibrary("mikmod");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    27
		System.loadLibrary("SDL_net");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    28
		System.loadLibrary("SDL_mixer");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    29
		System.loadLibrary("SDL_ttf");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    30
		System.loadLibrary("lua5.1");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    31
		System.loadLibrary("hwengine");
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    32
	}
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    33
	
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    34
	public static native int HWversionInfoNetProto();
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    35
	public static native String HWversionInfoVersion();
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    36
	public static native int HWgetNumberOfWeapons();
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    37
	public static native int HWgetMaxNumberOfTeams();
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    38
	public static native int HWgetMaxNumberOfHogs();
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    39
	
3edc3e3b8cdc Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
diff changeset
    40
}