X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmap%2FTransitionState.h;h=9f2cd193a1febfbd9eec9a1c610892c2711d57c4;hb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;hp=1790d716c39a010fddd3ed85628e25a8d7aa2757;hpb=5ca18f73987fb3935ab34654cbbecf5eca4704cb;p=l2e.git diff --git a/src/map/TransitionState.h b/src/map/TransitionState.h index 1790d71..9f2cd19 100644 --- a/src/map/TransitionState.h +++ b/src/map/TransitionState.h @@ -1,16 +1,9 @@ -/* - * TransitionState.h - * - * Created on: Oct 7, 2012 - * Author: holy - */ - #ifndef MAP_TRANSITIONSTATE_H_ #define MAP_TRANSITIONSTATE_H_ #include "fwd.h" #include "../app/State.h" -#include "../geometry/Vector.h" +#include "../math/Vector.h" namespace map { @@ -18,7 +11,7 @@ class TransitionState : public app::State { public: - TransitionState(MapState *, Map *, const geometry::Vector &); + TransitionState(MapState *, Map *, const math::Vector &); virtual ~TransitionState() { } public: @@ -37,7 +30,7 @@ private: private: MapState *ms; Map *map; - const geometry::Vector &coordinates; + const math::Vector &coordinates; };