blob: 45e646687463c3614e0299cb8eb13a06591c8bf9 (
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 <attack.hpp>
#include <texture.hpp>
struct Hit : public Component {
Hit(Attack* a)
: attack(a) {}
Attack* attack;
TextureIterator effect;
void fromXML(XMLElement* imp, XMLElement* def) final {
(void)imp;
(void)def;
}
};
#endif // COMPONENTS_HIT_HPP_
|