Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-11-23 22:13:40 +0000
committerStijn Buys <ingar@osirion.org>2008-11-23 22:13:40 +0000
commit2e93e755a4f4631419ba0eee26660a5638a7a7c6 (patch)
tree38e0e0327c16cecaab0600493d4c6bb78b70caf3 /src/render/renderext.h
parentd01664f17503d52d4be1c31e099065da0d38d7f3 (diff)
particle systems
Diffstat (limited to 'src/render/renderext.h')
-rw-r--r--src/render/renderext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/renderext.h b/src/render/renderext.h
index eb2ae67..28a2c23 100644
--- a/src/render/renderext.h
+++ b/src/render/renderext.h
@@ -21,7 +21,7 @@ public:
RenderExt(core::Entity *entity);
~RenderExt();
- typedef std::list<ParticleStream *> Particles;
+ typedef std::list<ParticleSystem *> ParticleSystems;
virtual void frame(float elapsed);
@@ -34,7 +34,7 @@ public:
inline float distance() const { return state_distance; }
/// particles
- inline Particles &particles() { return state_particles; }
+ inline ParticleSystems &particles() { return state_particles; }
private:
bool state_visible;
bool state_detailvisible;
@@ -42,7 +42,7 @@ private:
float state_fuzz;
float state_distance;
- Particles state_particles;
+ ParticleSystems state_particles;
};
} // namespace render