aboutsummaryrefslogtreecommitdiffstats
path: root/include/attack.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-10-12 08:32:21 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-10-12 08:32:21 -0400
commitb709a392436d4ed17e214cd9e302ddbd23d71c21 (patch)
tree9ad8dd18d26ab6aa907b182170c08f26bea10585 /include/attack.hpp
parentdbf47c4e8e7731519bec212419f70e08b139be0f (diff)
more lua scripting
Diffstat (limited to 'include/attack.hpp')
-rw-r--r--include/attack.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/attack.hpp b/include/attack.hpp
index 941e3d7..deea418 100644
--- a/include/attack.hpp
+++ b/include/attack.hpp
@@ -6,16 +6,17 @@
#include <forward_list>
#include <vector>
+#include <systems/lua.hpp>
#include <texture.hpp>
#include <vector2.hpp>
struct Attack {
- int power;
vec2 offset;
vec2 range;
vec2 vel; // TODO use
vec2 accel; // TODO use
+ LuaScript script;
TextureIterator effect;
};
@@ -50,6 +51,8 @@ public:
bool receive(const AttackEvent& ae);
void update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) override;
static void render(void);
+
+ static void initLua(LuaScript& s);
};
#endif // ATTACK_HPP_