blob: 334712bfa1ad7e6078c5ec62e64ffa25004847a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef COMPONENTS_HIT_HPP_
#define COMPONENTS_HIT_HPP_
#include "base.hpp"
#include <texture.hpp>
struct Hit : public Component {
Hit(int d, bool p = false)
: damage(d), pierce(p) {}
int damage;
bool pierce;
TextureIterator effect;
void fromXML(XMLElement* imp, XMLElement* def) final {
(void)imp;
(void)def;
}
};
#endif // COMPONENTS_HIT_HPP_
|