We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a43a256 commit c492ad0Copy full SHA for c492ad0
1 file changed
RadarClass.h
@@ -29,6 +29,21 @@ class NOVTABLE RadarClass : public DisplayClass
29
virtual void Init_For_House() RX;
30
31
//Non-virtual
32
+ Point2D* GetCrdOnRadar(Point2D *pOutBuffer, CoordStruct *pCrd, bool bRestrictToBound)
33
+ {
34
+ JMP_THIS(0x6557F0);
35
+ }
36
+
37
+ Point2D GetCrdOnRadar(CoordStruct crd, bool bRestrictToBound = true)
38
39
+ auto pOutBuffer = new Point2D();
40
+ return *GetCrdOnRadar(pOutBuffer, &crd, bRestrictToBound);
41
42
43
+ void RefreshCrd(Point2D* pCrd)
44
45
+ JMP_THIS(0x6562D0);
46
47
48
protected:
49
//Constructor
0 commit comments