2018-08-19 09:46:58 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "..\Global\global.h"
|
|
|
|
|
2019-11-27 15:12:35 +01:00
|
|
|
//#define Targetable ((int (__cdecl*)(ITEM_INFO*, AI_INFO*)) 0x004672F0)
|
|
|
|
//#define TargetVisible ((int (__cdecl*)(ITEM_INFO*, AI_INFO*)) 0x004671E0)
|
|
|
|
//#define ShotLara ((int (__cdecl*)(ITEM_INFO*, AI_INFO*, BITE_INFO*, short, int)) 0x00467610)
|
2018-09-12 20:37:37 +02:00
|
|
|
|
2019-12-02 14:49:19 +01:00
|
|
|
int ShotLara(ITEM_INFO* item, AI_INFO* info, BITE_INFO* gun, short extra_rotation, int damage);
|
|
|
|
short GunMiss(int x, int y, int z, short speed, short yrot, short roomNumber);
|
|
|
|
short GunHit(int x, int y, int z, short speed, short yrot, short roomNumber);
|
|
|
|
short GunShot(int x, int y, int z, short speed, short yrot, short roomNumber);
|
|
|
|
int Targetable(ITEM_INFO* item, AI_INFO* info);
|
|
|
|
int TargetVisible(ITEM_INFO* item, AI_INFO* info);
|
2019-11-14 20:15:29 +01:00
|
|
|
|
|
|
|
void Inject_People();
|