Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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__