summaryrefslogtreecommitdiffstats
path: root/src/Radar.h
blob: 123cffb1600f7294c272d634656846cd9b013a32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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);
};