blob: f559e6fe8989d656788438391ea55d503218b926 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef COMPONENTS_AGGRO_HPP_
#define COMPONENTS_AGGRO_HPP_
#include "base.hpp"
/**
* Causes the entity to get mad at the player, charge and fight.
*/
struct Aggro : public Component {
Aggro(bool y = false)
: yes(y) {}
Aggro(XMLElement* imp, XMLElement* def) {
fromXML(imp, def);
}
bool yes;
void fromXML(XMLElement* imp, XMLElement* def) final {
(void)imp, (void)def;
// TODO
}
};
#endif // COMPONENTS_AGGRO_HPP_
|