diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-22 02:20:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-22 02:20:36 +0300 |
commit | b54c0e944974669c4b5c1eb3f8018547c2179630 (patch) | |
tree | c0a08d7727f6aa0a1a9ed75f8ac14ec7a67f7a85 /src/effectmanager.h | |
parent | 1ff17739796e327e30a78b544be9865420d4c807 (diff) | |
download | plus-b54c0e944974669c4b5c1eb3f8018547c2179630.tar.gz plus-b54c0e944974669c4b5c1eb3f8018547c2179630.tar.bz2 plus-b54c0e944974669c4b5c1eb3f8018547c2179630.tar.xz plus-b54c0e944974669c4b5c1eb3f8018547c2179630.zip |
Remove default parameters from effectmanager.
Diffstat (limited to 'src/effectmanager.h')
-rw-r--r-- | src/effectmanager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/effectmanager.h b/src/effectmanager.h index 5882e6933..5072216d8 100644 --- a/src/effectmanager.h +++ b/src/effectmanager.h @@ -58,7 +58,7 @@ class EffectManager final */ bool trigger(const int id, Being *const being, - const int rotation = 0); + const int rotation); bool triggerDirection(const int id, Being *const being, @@ -66,7 +66,7 @@ class EffectManager final Particle *triggerReturn(const int id, Being *const being, - const int rotation = 0); + const int rotation); /** * Triggers a effect with the id, at @@ -75,7 +75,7 @@ class EffectManager final bool trigger(const int id, const int x, const int y, const time_t endTime, - const int rotation = 0); + const int rotation); void triggerDefault(int effectId, Being *const being, |