summaryrefslogtreecommitdiff
path: root/src/particle/particle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/particle/particle.h')
-rw-r--r--src/particle/particle.h26
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)