aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/fog.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/bladerunner/fog.h')
-rw-r--r--engines/bladerunner/fog.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/engines/bladerunner/fog.h b/engines/bladerunner/fog.h
index 992ede56ed..445308d540 100644
--- a/engines/bladerunner/fog.h
+++ b/engines/bladerunner/fog.h
@@ -34,8 +34,7 @@ namespace BladeRunner {
class SetEffects;
-class Fog
-{
+class Fog {
friend class SetEffects;
protected:
@@ -82,20 +81,17 @@ protected:
};
-class FogCone : public Fog
-{
+class FogCone : public Fog {
void read(Common::ReadStream *stream, int framesCount);
void calculateCoeficient(Vector3 position, Vector3 viewPosition, float *coeficient);
};
-class FogSphere : public Fog
-{
+class FogSphere : public Fog {
void read(Common::ReadStream *stream, int framesCount);
void calculateCoeficient(Vector3 position, Vector3 viewPosition, float *coeficient);
};
-class FogBox : public Fog
-{
+class FogBox : public Fog {
void read(Common::ReadStream *stream, int framesCount);
void calculateCoeficient(Vector3 position, Vector3 viewPosition, float *coeficient);
};