2020-12-21 13:16:29 -03:00
|
|
|
#pragma once
|
|
|
|
|
2021-09-19 23:41:26 +03:00
|
|
|
#include "control/box.h"
|
2020-12-21 13:16:29 -03:00
|
|
|
|
2021-09-14 11:22:59 +03:00
|
|
|
constexpr auto MAX_VISIBILITY_DISTANCE = WALL_SIZE * 8;
|
|
|
|
|
2020-12-21 13:16:29 -03: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);
|