summaryrefslogtreecommitdiffhomepage
path: root/Stars45/TerrainHaze.h
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/TerrainHaze.h')
-rw-r--r--Stars45/TerrainHaze.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/Stars45/TerrainHaze.h b/Stars45/TerrainHaze.h
index 3c8bcb6..7784691 100644
--- a/Stars45/TerrainHaze.h
+++ b/Stars45/TerrainHaze.h
@@ -1,15 +1,15 @@
/* Project Starshatter 4.5
- Destroyer Studios LLC
- Copyright © 1997-2005. All Rights Reserved.
+ Destroyer Studios LLC
+ Copyright © 1997-2005. All Rights Reserved.
- SUBSYSTEM: Stars.exe
- FILE: TerrainHaze.h
- AUTHOR: John DiCamillo
+ SUBSYSTEM: Stars.exe
+ FILE: TerrainHaze.h
+ AUTHOR: John DiCamillo
- OVERVIEW
- ========
- Atmospheric fog along the horizon
+ OVERVIEW
+ ========
+ Atmospheric fog along the horizon
*/
#ifndef TerrainHaze_h
@@ -28,18 +28,18 @@ class TerrainRegion;
class TerrainHaze : public Solid
{
public:
- TerrainHaze();
- virtual ~TerrainHaze();
+ TerrainHaze();
+ virtual ~TerrainHaze();
- virtual void Render(Video* video, DWORD flags);
+ virtual void Render(Video* video, DWORD flags);
- virtual int CheckRayIntersection(Point pt, Point vpn, double len, Point& ipt,
- bool treat_translucent_polys_as_solid=true);
+ virtual int CheckRayIntersection(Point pt, Point vpn, double len, Point& ipt,
+ bool treat_translucent_polys_as_solid=true);
- virtual void UseTerrainRegion(TerrainRegion* tr) { tregion = tr; }
+ virtual void UseTerrainRegion(TerrainRegion* tr) { tregion = tr; }
protected:
- TerrainRegion* tregion;
+ TerrainRegion* tregion;
};
#endif TerrainHaze_h