diff options
Diffstat (limited to 'src/Fog.h')
-rw-r--r-- | src/Fog.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Fog.h b/src/Fog.h index a7e0c25..a22c378 100644 --- a/src/Fog.h +++ b/src/Fog.h @@ -1,16 +1,14 @@ #ifndef _FOG_H_ #define _FOG_H_ - /**> HEADER FILES <**/ -#ifdef OS9 +#ifdef OS9 #include <gl.h> #else #include <GL/gl.h> #endif #include "Quaternions.h" - class Fog{ public: GLfloat fogColor[4]; @@ -18,11 +16,10 @@ class Fog{ GLfloat fogDensity; GLfloat fogStart; GLfloat fogEnd; - + void SetFog(float colorR, float colorG, float colorB, float fStart, float fEnd, float fogDensity); void TempFog(float colorR, float colorG, float colorB); void ResetFog(); }; #endif - |