2018-08-19 09:46:58 +02:00
|
|
|
#pragma once
|
|
|
|
|
2019-11-14 20:15:29 +01:00
|
|
|
#include "..\Global\global.h"
|
|
|
|
|
2019-11-27 15:12:35 +01:00
|
|
|
#define FlashIt ((int (__cdecl*)()) 0x00439C10)
|
|
|
|
#define UpdateHealtBar ((void (__cdecl*)(int)) 0x00439E50)
|
|
|
|
#define UpdateAirBar ((void (__cdecl*)(int)) 0x00439FC0)
|
2018-08-19 09:46:58 +02:00
|
|
|
|
2019-12-02 14:49:19 +01:00
|
|
|
void DrawHealtBar(int percentual);
|
|
|
|
void DrawAirBar(int percentual);
|
|
|
|
void AddDisplayPickup(short objectNumber);
|
|
|
|
int DrawAllPickups();
|
|
|
|
void InitialisePickupDisplay();
|
2019-11-14 20:15:29 +01:00
|
|
|
|
2019-11-27 15:12:35 +01:00
|
|
|
extern short PickupX;
|
|
|
|
extern short PickupY;
|
|
|
|
extern short CurrentPickup;
|
2019-11-14 20:15:29 +01:00
|
|
|
extern DISPLAY_PICKUP Pickups[NUM_PICKUPS];
|
2019-11-27 15:12:35 +01:00
|
|
|
extern short PickupVel;
|
2018-08-19 09:46:58 +02:00
|
|
|
|
|
|
|
void Inject_Healt();
|
|
|
|
|