X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fsdl%2Futility.h;h=295877ff9cc314be4df10ff6df8313acdc153d43;hb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;hp=40867dde58663d3d58ff6d5d466847888b5af94a;hpb=ef2496b3cb7ce66b7f831278be66261834b732e5;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); }