X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FTexture.h;h=0de987a3d6355ab9f46386183c7b4326db9705c9;hb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;hp=bd85aaafb1fe5d4b9258e30894b7888b5af6db19;hpb=ef2496b3cb7ce66b7f831278be66261834b732e5;p=l2e.git diff --git a/src/graphics/Texture.h b/src/graphics/Texture.h index bd85aaa..0de987a 100644 --- a/src/graphics/Texture.h +++ b/src/graphics/Texture.h @@ -1,7 +1,7 @@ #ifndef GRAPHICS_TEXTURE_H_ #define GRAPHICS_TEXTURE_H_ -#include "../geometry/Vector.h" +#include "../math/Vector.h" #include @@ -12,27 +12,27 @@ class Texture { public: explicit Texture( SDL_Surface *surface = 0, - const geometry::Vector &size = geometry::Vector(), - const geometry::Vector &offset = geometry::Vector()); + const math::Vector &size = math::Vector(), + const math::Vector &offset = math::Vector()); ~Texture(); static const int TYPE_ID = 410; public: - void Render(SDL_Surface *dest, const geometry::Vector &from, const geometry::Vector &to) const; + void Render(SDL_Surface *dest, const math::Vector &from, const math::Vector &to) const; public: void SetSurface(SDL_Surface *s) { surface = s; } - void SetSize(const geometry::Vector &s) { size = s; } - void SetOffset(const geometry::Vector &o) { offset = o; } + void SetSize(const math::Vector &s) { size = s; } + void SetOffset(const math::Vector &o) { offset = o; } static void CreateTypeDescription(); static void Construct(void *); private: SDL_Surface *surface; - geometry::Vector size; - geometry::Vector offset; + math::Vector size; + math::Vector offset; };