diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-28 11:21:33 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-28 11:21:33 -0400 |
commit | 00f879600bcea8f1ec1775c941041ee6346a60ba (patch) | |
tree | f9bb9ca811a2a565aed16ccab31cc2847539072f /include/attack.hpp | |
parent | ceef5de7d838e97c3d7f990023398181ee1500c2 (diff) |
skirl can kill
Diffstat (limited to 'include/attack.hpp')
-rw-r--r-- | include/attack.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/attack.hpp b/include/attack.hpp index ef67a79..0ab5138 100644 --- a/include/attack.hpp +++ b/include/attack.hpp @@ -13,11 +13,12 @@ enum class AttackType : char { }; struct AttackEvent { - AttackEvent(vec2 p, AttackType at, int pow = 10) - : pos(p), type(at), power(pow) {} + AttackEvent(vec2 p, AttackType at, bool fp, int pow = 10) + : pos(p), type(at), fromplayer(fp), power(pow) {} vec2 pos; AttackType type; + bool fromplayer; int power; }; |