summaryrefslogtreecommitdiffstats
path: root/src/Radar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Radar.h')
-rw-r--r--src/Radar.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Radar.h b/src/Radar.h
new file mode 100644
index 00000000..123cffb1
--- /dev/null
+++ b/src/Radar.h
@@ -0,0 +1,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);
+};