]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/TransitionState.h
renamed namespace geometry -> math
[l2e.git] / src / map / TransitionState.h
index 761be8bb434af3e32454709ff48c71a706b6da33..9f2cd193a1febfbd9eec9a1c610892c2711d57c4 100644 (file)
@@ -3,7 +3,7 @@
 
 #include "fwd.h"
 #include "../app/State.h"
-#include "../geometry/Vector.h"
+#include "../math/Vector.h"
 
 namespace map {
 
@@ -11,7 +11,7 @@ class TransitionState
 : public app::State {
 
 public:
-       TransitionState(MapState *, Map *, const geometry::Vector<int> &);
+       TransitionState(MapState *, Map *, const math::Vector<int> &);
        virtual ~TransitionState() { }
 
 public:
@@ -30,7 +30,7 @@ private:
 private:
        MapState *ms;
        Map *map;
-       const geometry::Vector<int> &coordinates;
+       const math::Vector<int> &coordinates;
 
 };