diff --git a/engines/access/amazon/amazon_logic.h b/engines/access/amazon/amazon_logic.h index 5c781727c018..a1fb4eef7715 100644 --- a/engines/access/amazon/amazon_logic.h +++ b/engines/access/amazon/amazon_logic.h @@ -42,7 +42,7 @@ class AmazonManager { AmazonManager(AmazonEngine *vm) : _vm(vm) {} }; -class PannedScene: public AmazonManager { +class PannedScene : public AmazonManager { struct PanEntry { SpriteResource *_pObject; int _pImgNum; @@ -78,7 +78,7 @@ class CampScene : public PannedScene { void mWhileDoOpen(); }; -class Opening: public CampScene { +class Opening : public CampScene { private: int _pCount; @@ -93,7 +93,7 @@ class Opening: public CampScene { void doIntroduction(); }; -class Plane: public PannedScene { +class Plane : public PannedScene { public: int _pCount; Common::Point _position; @@ -111,7 +111,7 @@ class Plane: public PannedScene { }; #define JUNGLE_SIZE 3 -class Jungle: public CampScene { +class Jungle : public CampScene { private: void initJWalk2(); void jungleMove(); @@ -157,7 +157,7 @@ class Cast : public PannedScene { void doCast(int param1); }; -class River: public PannedScene { +class River : public PannedScene { private: bool _chickenOutFl; const byte *_mapPtr; @@ -212,7 +212,7 @@ class River: public PannedScene { enum AntDirection { ANT_RIGHT = 0, ANT_LEFT = 1 }; -class Ant: public AmazonManager { +class Ant : public AmazonManager { private: AntDirection _antDirection; AntDirection _pitDirection; diff --git a/engines/access/amazon/amazon_player.h b/engines/access/amazon/amazon_player.h index 2d3797234d64..236b8bd1bdd0 100644 --- a/engines/access/amazon/amazon_player.h +++ b/engines/access/amazon/amazon_player.h @@ -32,7 +32,7 @@ namespace Amazon { class AmazonEngine; -class AmazonPlayer: public Player { +class AmazonPlayer : public Player { private: AmazonEngine *_game; public: diff --git a/engines/access/amazon/amazon_scripts.h b/engines/access/amazon/amazon_scripts.h index bdbabfc84d66..e10eefb4f5e7 100644 --- a/engines/access/amazon/amazon_scripts.h +++ b/engines/access/amazon/amazon_scripts.h @@ -32,7 +32,7 @@ namespace Amazon { class AmazonEngine; -class AmazonScripts: public Scripts { +class AmazonScripts : public Scripts { private: AmazonEngine *_game; protected: diff --git a/engines/access/animation.h b/engines/access/animation.h index 97d45c7b8ffb..722f5430ab12 100644 --- a/engines/access/animation.h +++ b/engines/access/animation.h @@ -82,7 +82,7 @@ class AnimationResource { Animation *getAnimation(int idx) { return _animations[idx]; } }; -class Animation: public Manager { +class Animation : public Manager { private: Common::Array _frames; diff --git a/engines/access/bubble_box.h b/engines/access/bubble_box.h index 8a4d67ecc28b..2c05d096c3c5 100644 --- a/engines/access/bubble_box.h +++ b/engines/access/bubble_box.h @@ -38,7 +38,7 @@ class AccessEngine; enum BoxType { TYPE_2 = 2, TYPE_4 = 4 }; -class BubbleBox: public Manager { +class BubbleBox : public Manager { private: int _startItem, _startBox; int _charCol, _rowOff; diff --git a/engines/access/char.h b/engines/access/char.h index 882e7077a3a5..e89cdae49fae 100644 --- a/engines/access/char.h +++ b/engines/access/char.h @@ -46,7 +46,7 @@ class CharEntry { CharEntry(); }; -class CharManager: public Manager { +class CharManager : public Manager { private: void charMenu(); public: diff --git a/engines/access/martian/martian_scripts.h b/engines/access/martian/martian_scripts.h index 9f90643e2214..fc7495fc4793 100644 --- a/engines/access/martian/martian_scripts.h +++ b/engines/access/martian/martian_scripts.h @@ -32,7 +32,7 @@ namespace Martian { class MartianEngine; -class MartianScripts: public Scripts { +class MartianScripts : public Scripts { private: MartianEngine *_game; protected: diff --git a/engines/access/player.h b/engines/access/player.h index ab4222eece75..7c8e9a2e86d0 100644 --- a/engines/access/player.h +++ b/engines/access/player.h @@ -38,7 +38,7 @@ enum Direction { NONE = 0, UP = 1, DOWN = 2, LEFT = 3, RIGHT = 4, class AccessEngine; -class Player: public ImageEntry, public Manager { +class Player : public ImageEntry, public Manager { protected: int _leftDelta, _rightDelta; int _upDelta, _downDelta; diff --git a/engines/access/room.h b/engines/access/room.h index 1ba4af10e2a3..44279fa6b12c 100644 --- a/engines/access/room.h +++ b/engines/access/room.h @@ -60,7 +60,7 @@ class JetFrame { enum Function { FN_NONE = 0, FN_CLEAR1 = 1, FN_CLEAR2 = 2, FN_RELOAD = 3, FN_BREAK = 4 }; -class Room: public Manager { +class Room : public Manager { private: void roomLoop(); diff --git a/engines/access/screen.h b/engines/access/screen.h index 1cec75d5e7a2..bf4cceaf11d8 100644 --- a/engines/access/screen.h +++ b/engines/access/screen.h @@ -47,7 +47,7 @@ struct ScreenSave { int _screenYOff; }; -class Screen: public ASurface { +class Screen : public ASurface { private: AccessEngine *_vm; byte _tempPalette[PALETTE_SIZE]; diff --git a/engines/access/scripts.h b/engines/access/scripts.h index fbc3e743a550..e12f2826de7b 100644 --- a/engines/access/scripts.h +++ b/engines/access/scripts.h @@ -35,7 +35,7 @@ class Scripts; #define SCRIPT_START_BYTE 0xE0 #define ROOM_SCRIPT 2000 -class Scripts: public Manager { +class Scripts : public Manager { private: Resource *_resource; int _specialFunction; diff --git a/engines/access/video.h b/engines/access/video.h index 6331ea4405ae..17825db36725 100644 --- a/engines/access/video.h +++ b/engines/access/video.h @@ -33,7 +33,7 @@ namespace Access { enum VideoFlags { VIDEOFLAG_NONE = 0, VIDEOFLAG_BG = 1 }; -class VideoPlayer: public Manager { +class VideoPlayer : public Manager { struct VideoHeader { int _frameCount; int _width, _height;