From 3ef0e74749373d4cfa2a9f8cda9b536b77d8b4cd Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 26 Oct 2017 15:54:44 -0400 Subject: fight stuff --- include/components/health.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include/components/health.hpp') diff --git a/include/components/health.hpp b/include/components/health.hpp index eacaaa5..f0b8e6b 100644 --- a/include/components/health.hpp +++ b/include/components/health.hpp @@ -3,6 +3,8 @@ #include "base.hpp" +#include + /** * @struct Health * @brief Gives and entity health and stuff. @@ -19,6 +21,7 @@ struct Health : public Component { int health; /**< The current amount of health */ int maxHealth; /**< The maximum amount of health */ + Mix_Chunk* ouch; /**< Sound made when attacked */ void fromXML(XMLElement* imp, XMLElement* def) final { (void)imp; @@ -27,6 +30,11 @@ struct Health : public Component { if (def->QueryIntAttribute("value", &health) != XML_NO_ERROR) health = 1; maxHealth = health; + auto o = def->Attribute("ouch"); + if (o != nullptr) + ouch = Mix_LoadWAV(o); + else + ouch = nullptr; } }; -- cgit v1.2.3