]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/HeroStatus.h
added hero's stats in status screen
[l2e.git] / src / menu / HeroStatus.h
index 1b88da2229565a11ae3517906860e3547acf872a..2888b1555bb7d4f5f521c36d5bc446feec719090 100644 (file)
@@ -25,7 +25,6 @@ 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;
@@ -36,7 +35,6 @@ public:
 private:
        const Resources *res;
        const common::Hero *hero;
-       geometry::Vector<int> position;
 
 };