]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/Tile.h
removed useless comments
[l2e.git] / src / map / Tile.h
index 84c740a61c8d527d5393de753773315903362803..f5afb246219e7d3e88faa3d06eb5980ff640076a 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef MAP_TILE_H_
 #define MAP_TILE_H_
 
-#include "../geometry/Vector.h"
+#include "../math/Vector.h"
 
 #include <SDL.h>
 
@@ -26,7 +26,7 @@ public:
 
        SDL_Surface *BattleBackground() { return battlebg; }
 
-       const geometry::Vector<int> &Offset() const { return offset; }
+       const math::Vector<int> &Offset() const { return offset; }
 
        bool BlocksNorth() const { return flags & BLOCK_NORTH; }
        bool BlocksEast() const { return flags & BLOCK_EAST; }
@@ -38,16 +38,16 @@ public:
 
 // temporary setters
 public:
-       Tile &SetOffset(const geometry::Vector<int> &o) { offset = o; return *this; }
+       Tile &SetOffset(const math::Vector<int> &o) { offset = o; return *this; }
        Tile &SetFlags(Uint32 f) { flags = f; return *this; }
 
 private:
        SDL_Surface *battlebg;
-       geometry::Vector<int> offset;
+       math::Vector<int> offset;
        int flags;
 
 };
 
 }
 
-#endif /* MAP_TILE_H_ */
+#endif