X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FMonster.h;h=d3a7162111939c1f887cf4c63fa548f4575b0beb;hb=3c72a71fbf6de96333a641051a20c6bf8b3a5df3;hp=1c9218413fef2a78bd72655fb977051ba5781fcc;hpb=628b3a7276d0b330719e05504b23bafcf88f8fca;p=l2e.git diff --git a/src/battle/Monster.h b/src/battle/Monster.h index 1c92184..d3a7162 100644 --- a/src/battle/Monster.h +++ b/src/battle/Monster.h @@ -52,6 +52,8 @@ public: // temporary setters until loader is implemented public: void SetSprite(graphics::Sprite *s) { sprite = s; } + void SetMaxHealth(Uint16 m) { maxHealth = m; } + void SetHealth(Uint16 h) { health = h; } private: const char *name;