diff options
Diffstat (limited to 'src/effectmanager.h')
-rw-r--r-- | src/effectmanager.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/effectmanager.h b/src/effectmanager.h index 190f1d0ce..b877b2cf1 100644 --- a/src/effectmanager.h +++ b/src/effectmanager.h @@ -48,13 +48,14 @@ class EffectManager final * Triggers a effect with the id, at * the specified being. */ - bool trigger(const int id, Being *const being); + bool trigger(const int id, Being *const being, const int rotation = 0); /** * Triggers a effect with the id, at * the specified x and y coordinate. */ - bool trigger(const int id, const int x, const int y); + bool trigger(const int id, const int x, const int y, + const int rotation = 0); private: std::vector<EffectDescription> mEffects; |