]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/MapState.h
added temporary map transition implementation
[l2e.git] / src / map / MapState.h
index 4ba149db1d96c3e05749c4a5b32f411b5938dfc5..ccdb51e7fef0c07477640387a4e828f7dcf182ee 100644 (file)
@@ -42,6 +42,8 @@ public:
 
        void SetWalkingSpeed(float s) { walkingSpeed = s; }
 
+       void Transition(Map *, const geometry::Vector<int> &coordinates);
+
 private:
        static bool ZCompare(const Entity *lhs, const Entity *rhs);
 
@@ -69,6 +71,7 @@ private:
        float walkingSpeed;
        int nextDirection;
        bool afterLock;
+       bool skipLock;
        bool debug;
 
 };