// atmosphere.h // // Copyright (C) 2001 Chris Laurel // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. #ifndef _ATMOSPHERE_H_ #define _ATMOSPHERE_H_ #include #include class Atmosphere { public: Atmosphere() : height(0.0f), lowerColor(0.0f, 0.0f, 0.0f), upperColor(0.0f, 0.0f, 0.0f), skyColor(0.0f, 0.0f, 0.0f), sunsetColor(1.0f, 0.6f, 0.5f), cloudHeight(0.0f), cloudSpeed(0.0f), cloudTexture() {}; public: float height; Color lowerColor; Color upperColor; Color skyColor; Color sunsetColor; float cloudHeight; float cloudSpeed; MultiResTexture cloudTexture; }; #endif // _ATMOSPHERE_H_