]> git.mxchange.org Git - flightgear.git/blobdiff - src/Environment/fgclouds.hxx
Merge branch 'next' of gitorious.org:fg/flightgear into next
[flightgear.git] / src / Environment / fgclouds.hxx
index 8a956d74829c05b05c9f8ae973ce731bae7e8a18..7eab7f12828f1e7a4d198da7039cf8fde34075a1 100644 (file)
 
 using std::string;
 
-class SGSampleGroup;
 class SGCloudField;
-class SGNewCloud;
-class FGMetar;
-//class FGEnvironmentCtrl;
 
 class FGClouds {
 
 private:
        double buildCloud(SGPropertyNode *cloud_def_root, SGPropertyNode *box_def_root, const string& name, double grid_z_rand, SGCloudField *layer);
-       void buildLayer(int iLayer, const string& name, double alt, double coverage);
+       void buildLayer(int iLayer, const string& name, double coverage);
 
        void buildCloudLayers(void);
 
        int update_event;
+#if 0
        SGSoundSample *snd_lightning;
-        bool clouds_3d_enabled;
+#endif
+       bool clouds_3d_enabled;
+  int index;
 
 public:
        FGClouds();
        ~FGClouds();
 
-       void init(void);
+       void Init(void);
 
        int get_update_event(void) const;
        void set_update_event(int count);
-        bool get_3dClouds() const;
-        void set_3dClouds(bool enable);
+       bool get_3dClouds() const;
+       void set_3dClouds(bool enable);
+
 };
 
 #endif // _FGCLOUDS_HXX
+