]> git.localhorst.tv Git - l2e.git/blobdiff - src/sdl/utility.h
removed useless comments
[l2e.git] / src / sdl / utility.h
index 40867dde58663d3d58ff6d5d466847888b5af94a..0067c36d16d70d1ab412ff34eaa7b82f74b113ec 100644 (file)
@@ -1,17 +1,17 @@
 #ifndef SDL_UTILITY_H_
 #define SDL_UTILITY_H_
 
-#include "../geometry/Vector.h"
+#include "../math/Vector.h"
 #include <SDL.h>
 
 namespace sdl {
 
-void HorizontalLine(SDL_Surface *dst, const geometry::Vector<int> &position, unsigned int length, Uint32 color);
-void VerticalLine(SDL_Surface *dst, const geometry::Vector<int> &position, unsigned int length, Uint32 color);
+void HorizontalLine(SDL_Surface *dst, const math::Vector<int> &position, unsigned int length, Uint32 color);
+void VerticalLine(SDL_Surface *dst, const math::Vector<int> &position, unsigned int length, Uint32 color);
 
-void OutlineRect(SDL_Surface *dst, const geometry::Vector<int> &from, const geometry::Vector<int> &to, Uint32 color);
+void OutlineRect(SDL_Surface *dst, const math::Vector<int> &from, const math::Vector<int> &to, Uint32 color);
 void OutlineRect(SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
 
 }
 
-#endif /* SDL_UTILITY_H_ */
+#endif