diff options
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; }; |