]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Monster.h
added complex attack and spell animations
[l2e.git] / src / battle / Monster.h
index 1c9218413fef2a78bd72655fb977051ba5781fcc..f37786a076f3f8618449a7148a2faf8539716ff8 100644 (file)
@@ -51,7 +51,10 @@ public:
 
 // temporary setters until loader is implemented
 public:
+       void SetName(const char *n) { name = n; }
        void SetSprite(graphics::Sprite *s) { sprite = s; }
+       void SetMaxHealth(Uint16 m) { maxHealth = m; }
+       void SetHealth(Uint16 h) { health = h; }
 
 private:
        const char *name;