summaryrefslogtreecommitdiff
path: root/src/particlecontainer.h
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2009-02-07 21:51:35 -0700
committerIra Rice <irarice@gmail.com>2009-02-07 21:51:35 -0700
commit450edb5900a46ada0cc6292f0079a31ea5d04573 (patch)
treea8b110ef8c1057da3c7d8fb9f1fbcdf88327db88 /src/particlecontainer.h
parent303609031d8b70f0b20002b28e2de450e0ad7fb7 (diff)
downloadMana-450edb5900a46ada0cc6292f0079a31ea5d04573.tar.gz
Mana-450edb5900a46ada0cc6292f0079a31ea5d04573.tar.bz2
Mana-450edb5900a46ada0cc6292f0079a31ea5d04573.tar.xz
Mana-450edb5900a46ada0cc6292f0079a31ea5d04573.zip
Some more include cleanups.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/particlecontainer.h')
-rw-r--r--src/particlecontainer.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/particlecontainer.h b/src/particlecontainer.h
index 0181f6e1..4fb00027 100644
--- a/src/particlecontainer.h
+++ b/src/particlecontainer.h
@@ -25,8 +25,7 @@
#include <list>
#include <vector>
-#include "particle.h"
-
+class Particle;
/**
* Set of particle effects. May be stacked with other ParticleContainers. All
@@ -65,8 +64,6 @@ protected:
ParticleContainer *mNext; /**< Contained container, if any */
};
-
-
/**
* Linked list of particle effects.
*/
@@ -94,7 +91,6 @@ protected:
std::list<Particle *> mElements; /**< Contained particle effects */
};
-
/**
* Particle container with indexing facilities
*/