]> git.mxchange.org Git - simgear.git/blobdiff - simgear/environment/precipitation.hxx
Trying to make old gcc on Jenkins happy.
[simgear.git] / simgear / environment / precipitation.hxx
index 80a08aeae1d14590e0e4f9ebef6072619283cd6b..363137e9cf062359595e219fdd3d922e0516935d 100644 (file)
@@ -36,11 +36,12 @@ class SGPrecipitation : public osg::Referenced
 {
 private:
     bool _freeze;
+    bool _enabled;
 
     float _snow_intensity;
     float _rain_intensity;
+    float _clip_distance;
        
-    int _wind_dir;
     osg::Vec3 _wind_vec;
        
     osg::ref_ptr<osgParticle::PrecipitationEffect> _precipitationEffect;
@@ -55,6 +56,9 @@ public:
     void setFreezing(bool);
     void setRainIntensity(float);
     void setSnowIntensity(float);
+
+    void setEnabled( bool );
+    bool getEnabled() const;
 };
 
 #endif