mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
* Fixing upper/lower case for includes types.h, zconf.h and zlib.h were renamed so that global includes like Types.h are not used.
23 lines
503 B
C
23 lines
503 B
C
#ifndef __IMP_GEAR__H_
|
|
#define __IMP_GEAR__H_
|
|
|
|
/**
|
|
* @file
|
|
* @author Flugente (bears-pit.com)
|
|
*/
|
|
|
|
#include "types.h"
|
|
#include "soldier profile type.h"
|
|
|
|
void EnterIMPGear( void );
|
|
void RenderIMPGear( void );
|
|
void ExitIMPGear( void );
|
|
void HandleIMPGear( void );
|
|
|
|
void DisplayGear( UINT16 usItem, UINT16 usPosX, UINT16 usPosY, BOOLEAN fWithBackGround, UINT8 aNumber, BOOLEAN fDisplayNumber );
|
|
|
|
void GiveIMPSelectedGear( MERCPROFILESTRUCT *pProfile );
|
|
INT32 GetIMPGearCost();
|
|
|
|
#endif
|