diff options
author | SafwatHalaby <SafwatHalaby@users.noreply.github.com> | 2015-05-19 05:54:20 +0200 |
---|---|---|
committer | SafwatHalaby <SafwatHalaby@users.noreply.github.com> | 2015-05-20 19:42:35 +0200 |
commit | 8436e5d8bd0889830f8daa7a15f08b6772e106fe (patch) | |
tree | 68b959cc0ca2eaee66add4887fed70785e4ce283 /src/Mobs/Path.h | |
parent | Merge pull request #2074 from SafwatHalaby/rmUnique (diff) | |
download | cuberite-8436e5d8bd0889830f8daa7a15f08b6772e106fe.tar cuberite-8436e5d8bd0889830f8daa7a15f08b6772e106fe.tar.gz cuberite-8436e5d8bd0889830f8daa7a15f08b6772e106fe.tar.bz2 cuberite-8436e5d8bd0889830f8daa7a15f08b6772e106fe.tar.lz cuberite-8436e5d8bd0889830f8daa7a15f08b6772e106fe.tar.xz cuberite-8436e5d8bd0889830f8daa7a15f08b6772e106fe.tar.zst cuberite-8436e5d8bd0889830f8daa7a15f08b6772e106fe.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Path.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/Mobs/Path.h b/src/Mobs/Path.h index acc56ef2d..b296bbdf5 100644 --- a/src/Mobs/Path.h +++ b/src/Mobs/Path.h @@ -1,16 +1,13 @@ #pragma once -/* Wanna use the pathfinder? Put this in your header file: - -// Fwd: cPath +/* +// Needed Fwds: cPath enum class ePathFinderStatus; class cPath; - -Put this in your .cpp: -#include "...Path.h" */ +#include "../FastRandom.h" #ifdef COMPILING_PATHFIND_DEBUGGER /* Note: the COMPILING_PATHFIND_DEBUGGER flag is used by Native / WiseOldMan95 to debug this class outside of MCServer. This preprocessor flag is never set when compiling MCServer. */ @@ -166,6 +163,7 @@ private: Vector3i m_Source; int m_StepsLeft; cPathCell * m_NearestPointToTarget; + cFastRandom m_Rand; /* Control fields */ ePathFinderStatus m_Status; |