diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-16 19:53:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-16 19:53:15 +0300 |
commit | b6826c63e304e17e852c8d7367bea420d709a0d9 (patch) | |
tree | f39e234826673aef8d16085252332825d9b1eeec /src/particle/particle.h | |
parent | ea31dc2bd04362265449afa9e54398f4cf628e74 (diff) | |
download | mv-b6826c63e304e17e852c8d7367bea420d709a0d9.tar.gz mv-b6826c63e304e17e852c8d7367bea420d709a0d9.tar.bz2 mv-b6826c63e304e17e852c8d7367bea420d709a0d9.tar.xz mv-b6826c63e304e17e852c8d7367bea420d709a0d9.zip |
Remove unused functions from particle.
Diffstat (limited to 'src/particle/particle.h')
-rw-r--r-- | src/particle/particle.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/particle/particle.h b/src/particle/particle.h index 01fea38e0..e5e61361a 100644 --- a/src/particle/particle.h +++ b/src/particle/particle.h @@ -85,12 +85,6 @@ class Particle notfinal : public Actor { return CAST_S32(mPos.y) - 16; } /** - * Creates a blank particle as a child of the current particle - * Useful for creating target particles - */ - Particle *createChild() restrict2; - - /** * Creates a child particle that hosts some emitters described in the * particleEffectFile. */ @@ -99,26 +93,6 @@ class Particle notfinal : public Actor const int rotation = 0) restrict2; /** - * Creates a standalone text particle. - */ - Particle *addTextSplashEffect(const std::string &restrict text, - const int x, const int y, - const Color *restrict const color, - Font *restrict const font, - const bool outline = false) - restrict2 A_NONNULL(5, 6); - - /** - * Creates a standalone text particle. - */ - Particle *addTextRiseFadeOutEffect(const std::string &restrict text, - const int x, const int y, - const Color *restrict const color, - Font *restrict const font, - const bool outline = false) - restrict2 A_NONNULL(5, 6); - - /** * Adds an emitter to the particle. */ void addEmitter(ParticleEmitter *const emitter) restrict2 A_NONNULL(2) |