cocoaTouch/otherSrc/PascalImports.h
author smxx
Mon, 15 Feb 2010 21:54:26 +0000
changeset 2814 71e80c6e74bb
parent 2805 36a8cebb91e8
child 3015 20a9c8160e82
permissions -rw-r--r--
Engine: * Removed some commented out lines * Added "SetHealth" script command * Added support for global variables (between lua and game) Training Missions: * Once again fail if your time runs out * Training missions show a "You've lost!" message * Changed Shotgun training back to mushrooms map

/*
 *  PascalImports.h
//  fpciphonedel
//
//  Created by Vittorio on 07/01/10.
//  Copyright __MyCompanyName__ 2010. All rights reserved.
 *
 */

#ifndef PASCALIMPORTS
#define PASCALIMPORTS

#ifdef __cplusplus
extern "C" {
#endif
	
	/* add C declarations below for all exported Pascal functions/procedure
	 * that you want to use
	 */

	void Game(const char *args[]);


	void HW_versionInfo(short int*, char**);

	void HW_click(void);
	void HW_zoomIn(void);
	void HW_zoomOut(void);
	void HW_zoomReset(void);
	void HW_ammoMenu(void);
	
	void HW_allKeysUp(void);
	
	void HW_walkLeft(void);
	void HW_walkRight(void);
	void HW_aimUp(void);
	void HW_aimDown(void);
	void HW_shoot(void);
	
	void HW_chat(void);
	void HW_tab(void);
	void HW_pause(void);
	
#ifdef __cplusplus
}
#endif

#endif