1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-10 21:28:31 +00:00
re3/src/Radar.h

18 lines
202 B
C
Raw Normal View History

#pragma once
enum eBlipType
{
BLIP_NONE,
BLIP_CAR,
BLIP_CHAR,
BLIP_OBJECT,
BLIP_COORD,
BLIP_CONTACT_POINT
};
class CRadar
{
public:
static void ClearBlipForEntity(eBlipType type, int32 id);
};