blob: 17d646c4fbeacf256af0b4a48825472e0648af8f (
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
25
|
#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(const std::string& a)
: arena(a) {}
Aggro(XMLElement* imp, XMLElement* def) {
fromXML(imp, def);
}
std::string arena;
void fromXML(XMLElement* imp, XMLElement* def) final {
(void)imp;
// TODO null check..?, imp given
arena = def->StrAttribute("arena");
}
};
#endif // COMPONENTS_AGGRO_HPP_
|