aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/mhwanh.h
diff options
context:
space:
mode:
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: */