blob: 017c11819fbc68ccc64443d3e39a0d5e47080b68 (
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
26
27
|
#ifndef COMPONENTS_GROUNDED_HPP_
#define COMPONENTS_GROUNDED_HPP_
#include "base.hpp"
/**
* @struct Grounded
* @brief Places an entity without physics on the ground.
* This is used so we don't have to update the physics of a non-moving object every loop.
*/
struct Grounded : public Component {
Grounded(bool g = false)
: grounded(g) {}
Grounded(XMLElement* imp, XMLElement* def) {
fromXML(imp, def);
}
bool grounded;
void fromXML(XMLElement* imp, XMLElement* def) final {
(void)imp;
(void)def;
grounded = false;
}
};
#endif // COMPONENTS_GROUNDED_HPP_
|