X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fsdl%2Futility.h;h=0067c36d16d70d1ab412ff34eaa7b82f74b113ec;hb=HEAD;hp=40867dde58663d3d58ff6d5d466847888b5af94a;hpb=cc3d698b8c1ad09d7a3f9e3f28bc84e0ac1735ea;p=l2e.git diff --git a/src/sdl/utility.h b/src/sdl/utility.h index 40867dd..0067c36 100644 --- a/src/sdl/utility.h +++ b/src/sdl/utility.h @@ -1,17 +1,17 @@ #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); } -#endif /* SDL_UTILITY_H_ */ +#endif