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>2013-01-27 15:19:14 +0000
committerStijn Buys <ingar@osirion.org>2013-01-27 15:19:14 +0000
commitfd6663f0d3a4e860c14a0f3279fcce06d27fa283 (patch)
tree4b5b1a2cb65f634096fd14983ba8a68c383c7a1c /src/render/particleejector.h
parentf096586dac6e6c0e083e23afafc99731bf2ba642 (diff)
ADded support for streak style particles.
Diffstat (limited to 'src/render/particleejector.h')
-rw-r--r--src/render/particleejector.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/render/particleejector.h b/src/render/particleejector.h
index 17e4688..743e370 100644
--- a/src/render/particleejector.h
+++ b/src/render/particleejector.h
@@ -112,6 +112,18 @@ protected:
virtual void draw(const math::Vector3f & ps_location, const math::Axis & ps_axis);
};
+/**
+ * @brief Streak particles
+ * */
+class ParticleEjectorStreak : public ParticleEjector {
+public:
+ ParticleEjectorStreak(const ParticleEjectorScript &script);
+ virtual ~ParticleEjectorStreak();
+
+protected:
+ virtual void draw(const math::Vector3f & ps_location, const math::Axis & ps_axis);
+};
+
} // namespace render
#endif // __INCLUDED_RENDER_PARTICLEEJECTOR_H__