From 316df0931c66e43e69f21bda28c77b9bdb1e8bca Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 13 Jun 2017 21:01:08 -0400 Subject: component reorginization; entity flashes --- include/components/hit.hpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 include/components/hit.hpp (limited to 'include/components/hit.hpp') diff --git a/include/components/hit.hpp b/include/components/hit.hpp new file mode 100644 index 0000000..d2e80ca --- /dev/null +++ b/include/components/hit.hpp @@ -0,0 +1,19 @@ +#ifndef COMPONENTS_HIT_HPP_ +#define COMPONENTS_HIT_HPP_ + +#include "base.hpp" + +struct Hit : public Component { + Hit(int d, bool p = false) + : damage(d), pierce(p) {} + + int damage; + bool pierce; + + void fromXML(XMLElement* imp, XMLElement* def) final { + (void)imp; + (void)def; + } +}; + +#endif // COMPONENTS_HIT_HPP_ -- cgit v1.2.3