]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/MapState.h
reversed order of monster checks
[l2e.git] / src / map / MapState.h
index 34ebdd2f15fc7dd9076392aec6357fa16ea0dacc..e7a75b6fca784f5dfb04c9a2b64154938a36dfbf 100644 (file)
@@ -44,11 +44,19 @@ public:
 
 private:
        static bool ZCompare(const Entity *lhs, const Entity *rhs);
+
+       bool CheckBlocking() const;
+
        void OnTileLock();
        void OnGridLock();
-       void OnMove();
+       void OnMove(bool);
+
+       void UpdateFollower(Entity &);
+       void StopFollowers(Entity &);
 
-       void UpdateFollower(Entity *);
+       void LockEntities();
+       void CheckMonster();
+       void CheckTrigger();
 
 private:
        Map *map;