summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Mobs/Path.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Mobs/Path.h b/src/Mobs/Path.h
index b3ad5ffd5..acc56ef2d 100644
--- a/src/Mobs/Path.h
+++ b/src/Mobs/Path.h
@@ -33,12 +33,21 @@ struct cPathCell
cPathCell * m_Parent; // Cell's parent, as defined in regular A*.
bool m_IsSolid; // Is the cell an air or a solid? Partial solids are currently considered solids.
};
+
+
+
+
+
class compareHeuristics
{
public:
bool operator()(cPathCell * & a_V1, cPathCell * & a_V2);
};
+
+
+
+
class cPath
{
public: