aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/fog.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-10-03 12:38:43 +0200
committerEugene Sandulenko2016-10-03 12:38:43 +0200
commit281c19ab036f387a99192594aa645e696009f40b (patch)
treee4de335067b68ee83b76de33c9b7f86b4f016d35 /engines/bladerunner/fog.h
parent77be430824ad0cafb0de9952ecb352ba4ad18571 (diff)
downloadscummvm-rg350-281c19ab036f387a99192594aa645e696009f40b.tar.gz
scummvm-rg350-281c19ab036f387a99192594aa645e696009f40b.tar.bz2
scummvm-rg350-281c19ab036f387a99192594aa645e696009f40b.zip
BLADERUNNER: Code formatting fixes
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);
};