]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/HeroStatus.h
added equipment in stats screen
[l2e.git] / src / menu / HeroStatus.h
index 12fe62f05cde32c0ee68e0cbf2c97cd3746f650f..2888b1555bb7d4f5f521c36d5bc446feec719090 100644 (file)
@@ -25,19 +25,16 @@ public:
 public:
        void SetResources(const Resources *r) { res = r; }
        void SetHero(const common::Hero *h) { hero = h; }
-       void SetPosition(const geometry::Vector<int> &p) { position = p; }
 
        int Width() const;
        int Height() const;
        geometry::Vector<int> Size() const { return geometry::Vector<int>(Width(), Height()); }
-       const geometry::Vector<int> &Position() const { return position; }
 
        void Render(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
 
 private:
        const Resources *res;
        const common::Hero *hero;
-       geometry::Vector<int> position;
 
 };