X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fsdl%2Futility.h;h=295877ff9cc314be4df10ff6df8313acdc153d43;hb=092a2dd175a4001a495c84ee85211734fb928c83;hp=40867dde58663d3d58ff6d5d466847888b5af94a;hpb=cc3d698b8c1ad09d7a3f9e3f28bc84e0ac1735ea;p=l2e.git diff --git a/src/sdl/utility.h b/src/sdl/utility.h index 40867dd..295877f 100644 --- a/src/sdl/utility.h +++ b/src/sdl/utility.h @@ -1,15 +1,15 @@ #ifndef SDL_UTILITY_H_ #define SDL_UTILITY_H_ -#include "../geometry/Vector.h" +#include "../math/Vector.h" #include namespace sdl { -void HorizontalLine(SDL_Surface *dst, const geometry::Vector &position, unsigned int length, Uint32 color); -void VerticalLine(SDL_Surface *dst, const geometry::Vector &position, unsigned int length, Uint32 color); +void HorizontalLine(SDL_Surface *dst, const math::Vector &position, unsigned int length, Uint32 color); +void VerticalLine(SDL_Surface *dst, const math::Vector &position, unsigned int length, Uint32 color); -void OutlineRect(SDL_Surface *dst, const geometry::Vector &from, const geometry::Vector &to, Uint32 color); +void OutlineRect(SDL_Surface *dst, const math::Vector &from, const math::Vector &to, Uint32 color); void OutlineRect(SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color); }