diff options
Diffstat (limited to 'src/Fog.h')
-rw-r--r-- | src/Fog.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Fog.h b/src/Fog.h deleted file mode 100644 index ea1f2d2..0000000 --- a/src/Fog.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef _FOG_H_ -#define _FOG_H_ - -/**> HEADER FILES <**/ -#include <GL/gl.h> -#include "Quaternions.h" - -class Fog{ - public: - GLfloat fogColor[4]; - GLint fogMode; - 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 |