From 77b43093c7b157e8ff0b68af4efd0eff226da35a Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 2 May 2021 10:12:49 -0400 Subject: Added damage and heal commands --- src/creature.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/creature.h') diff --git a/src/creature.h b/src/creature.h index e89978e..ee4d5ba 100644 --- a/src/creature.h +++ b/src/creature.h @@ -84,6 +84,7 @@ namespace creature { // Setters (mutators) void setGivenName(std::string name) {givenName = name;} void applyDamage(int amount, const std::string& type, const std::vector& qualifiers); + void applyHealing(int amount); void setScore(const rules::Ability& ability, int score); void setProfLevel(const rules::Skill& skill, int level); void addInventoryItem(std::shared_ptr item); -- cgit v1.2.3