Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/engine.h')
-rw-r--r--src/model/engine.h20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/model/engine.h b/src/model/engine.h
index c3e6064..724c060 100644
--- a/src/model/engine.h
+++ b/src/model/engine.h
@@ -27,11 +27,6 @@ public:
return engine_location;
}
- inline math::Color const & color() const
- {
- return engine_color;
- }
-
inline float radius() const
{
return engine_radius;
@@ -46,11 +41,24 @@ public:
{
return render_texture;
}
+
+ inline bool noflare() const
+ {
+ return engine_noflare;
+ }
+
+ inline bool notrail() const
+ {
+ return engine_notrail;
+ }
math::Vector3f engine_location;
float engine_radius;
- math::Color engine_color;
unsigned int engine_flare;
+
+
+ bool engine_noflare;
+ bool engine_notrail;
unsigned int render_texture;
};