]> git.localhorst.tv Git - l2e.git/blobdiff - src/graphics/Frame.h
merged Point into Vector
[l2e.git] / src / graphics / Frame.h
index 0f1287c06a3d2528b6f01c074ddda32f3c5ec75e..74ce1f7600e18198bf4ad5ed46a97df6b6d6860f 100644 (file)
@@ -8,7 +8,7 @@
 #ifndef GRAPHICS_FRAME_H_
 #define GRAPHICS_FRAME_H_
 
-#include "../geometry/Point.h"
+#include "../geometry/Vector.h"
 
 #include <SDL.h>
 
@@ -23,7 +23,9 @@ public:
 public:
        int MinWidth() const { return 2 * borderWidth; }
        int MinHeight() const { return 2 * borderHeight; }
-       void Draw(SDL_Surface *dest, geometry::Point<int> position, int width, int height) const;
+       int BorderWidth() const { return borderWidth; }
+       int BorderHeight() const { return borderHeight; }
+       void Draw(SDL_Surface *dest, const geometry::Vector<int> &position, int width, int height) const;
 
 private:
        SDL_Surface *surface;