diff options
Diffstat (limited to 'src/clouds.h')
-rw-r--r-- | src/clouds.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clouds.h b/src/clouds.h index 59861371e..24c679f3d 100644 --- a/src/clouds.h +++ b/src/clouds.h @@ -30,7 +30,6 @@ public: scene::ISceneNode* parent, scene::ISceneManager* mgr, s32 id, - float cloud_y, u32 seed ); @@ -65,13 +64,14 @@ public: void step(float dtime); - void update(v2f camera_p, float brightness); + void update(v2f camera_p, video::SColorf color); private: video::SMaterial m_material; core::aabbox3d<f32> m_box; float m_cloud_y; float m_brightness; + video::SColorf m_color; u32 m_seed; v2f m_camera_pos; float m_time; |