]> git.localhorst.tv Git - l2e.git/blobdiff - src/graphics/Sprite.h
Merge branch 'menus'
[l2e.git] / src / graphics / Sprite.h
index f6f3b7b566d58cfa969d973767353c39cfea8b7e..0d5a7513c83333b7cf02293d733f0a448b446df2 100644 (file)
@@ -17,6 +17,10 @@ namespace graphics {
 class Sprite {
 
 public:
+       static const int TYPE_ID = 409;
+
+public:
+       Sprite() : surface(0), size(64, 64), offset() { }
        Sprite(SDL_Surface *s, int width, int height, int xOffset = 0, int yOffset = 0)
        : surface(s), size(width, height), offset(xOffset, yOffset) { }
 
@@ -37,6 +41,14 @@ public:
                Draw(dest, position + offset, col, row);
        }
 
+public:
+       void SetSurface(SDL_Surface *s) { surface = s; }
+       void SetSize(const geometry::Vector<int> &s) { size = s; }
+       void SetOffset(const geometry::Vector<int> &o) { offset = o; }
+
+       static void CreateTypeDescription();
+       static void Construct(void *);
+
 private:
        SDL_Surface *surface;
        geometry::Vector<int> size;