diff options
author | megamage <none@none> | 2008-12-11 11:37:58 -0600 |
---|---|---|
committer | megamage <none@none> | 2008-12-11 11:37:58 -0600 |
commit | 415cccfed98df0b9b1c088ae95c579a125514c37 (patch) | |
tree | 85fe5e3bf0d8773e3abc4fc96cfcbbe21e5f369b /src/game/Cell.h | |
parent | 39083f4ff837d23cc886338fc9bc74df90fe9613 (diff) |
*First step of dynamic cell visit. Hope nothing is broken.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Cell.h')
-rw-r--r-- | src/game/Cell.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/Cell.h b/src/game/Cell.h index 719bfc3aaa5..35bcdbeea8a 100644 --- a/src/game/Cell.h +++ b/src/game/Cell.h @@ -142,6 +142,7 @@ struct TRINITY_DLL_DECL Cell } data; template<class LOCK_TYPE, class T, class CONTAINER> void Visit(const CellLock<LOCK_TYPE> &, TypeContainerVisitor<T, CONTAINER> &visitor, Map &) const; + template<class LOCK_TYPE, class T, class CONTAINER> void Visit(const CellLock<LOCK_TYPE> &, TypeContainerVisitor<T, CONTAINER> &visitor, Map &, float radius, float x_off, float y_off) const; }; template<class T> |