mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 21:29:00 +00:00
18 lines
202 B
C
18 lines
202 B
C
|
#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);
|
||
|
};
|