aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/mhwanh.h
diff options
context:
space:
mode:
authorKamil Zbróg2013-11-04 11:28:10 +0000
committerKamil Zbróg2013-11-04 11:28:10 +0000
commit8c85eff622e3bcec7685b6daf44aef094b6bdb09 (patch)
tree4f95371499c7c0a144f3fa41889ccc3b57b427e5 /engines/prince/mhwanh.h
parent5d8e664b003b4d06f52500e530e0f566b3dc7139 (diff)
downloadscummvm-rg350-8c85eff622e3bcec7685b6daf44aef094b6bdb09.tar.gz
scummvm-rg350-8c85eff622e3bcec7685b6daf44aef094b6bdb09.tar.bz2
scummvm-rg350-8c85eff622e3bcec7685b6daf44aef094b6bdb09.zip
PRINCE: code formating fixed
Diffstat (limited to 'engines/prince/mhwanh.h')
-rw-r--r--engines/prince/mhwanh.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/engines/prince/mhwanh.h b/engines/prince/mhwanh.h
index 24472da7a5..2b70ae525b 100644
--- a/engines/prince/mhwanh.h
+++ b/engines/prince/mhwanh.h
@@ -30,23 +30,24 @@ namespace Prince {
class MhwanhDecoder : public Graphics::ImageDecoder {
public:
- MhwanhDecoder();
- virtual ~MhwanhDecoder();
+ MhwanhDecoder();
+ virtual ~MhwanhDecoder();
- // ImageDecoder API
- void destroy();
- virtual bool loadStream(Common::SeekableReadStream &stream);
- virtual Graphics::Surface *getSurface() const { return _surface; }
- const byte *getPalette() const { return _palette; }
- uint16 getPaletteCount() const { return _paletteColorCount; }
+ // ImageDecoder API
+ void destroy();
+ virtual bool loadStream(Common::SeekableReadStream &stream);
+ virtual Graphics::Surface *getSurface() const { return _surface; }
+ const byte *getPalette() const { return _palette; }
+ uint16 getPaletteCount() const { return _paletteColorCount; }
private:
- Graphics::Surface *_surface;
- byte *_palette;
- uint16 _paletteColorCount;
+ Graphics::Surface *_surface;
+ byte *_palette;
+ uint16 _paletteColorCount;
};
}
-
#endif
+
+/* vim: set tabstop=4 noexpandtab: */