]> git.localhorst.tv Git - l2e.git/blobdiff - src/graphics/Sprite.h
added Point class
[l2e.git] / src / graphics / Sprite.h
index 5710ee58639b3eebf439dd975794968c03e39620..c81ed01984c7e1d00bd9866212808df4be34ffaa 100644 (file)
@@ -8,6 +8,8 @@
 #ifndef GRAPHICS_SPRITE_H_
 #define GRAPHICS_SPRITE_H_
 
+#include "../geometry/Point.h"
+
 #include <SDL.h>
 
 namespace graphics {
@@ -21,7 +23,7 @@ public:
 public:
        int Width() const { return width; }
        int Height() const { return height; }
-       void Draw(SDL_Surface *dest, int x, int y, int col = 0, int row = 0) const;
+       void Draw(SDL_Surface *dest, geometry::Point<int> position, int col = 0, int row = 0) const;
 
 private:
        SDL_Surface *surface;