diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-07 18:17:51 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-07 18:17:51 -0500 |
commit | 08708d80209d0b2cebc8f5f849a9b66e34202d6f (patch) | |
tree | dae3bcdfcb8d1a83642b59c0c15760e3d3565062 /include/components.hpp | |
parent | bd80053588a9a38c9f7a1f132d36fb0844b91af4 (diff) |
attacks?
Diffstat (limited to 'include/components.hpp')
-rw-r--r-- | include/components.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/components.hpp b/include/components.hpp index 541f0f8..0fb8ec6 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -172,7 +172,9 @@ struct Health : public Component { (void)imp; (void)def; // TODO - health = maxHealth = 1; + if (def->QueryIntAttribute("value", &health) != XML_NO_ERROR) + health = 1; + maxHealth = health; } }; @@ -208,6 +210,8 @@ struct Name : public Component { } }; +struct Player {}; + struct ItemDrop { ItemDrop(InventoryEntry& ie) : item(ie) {} |