aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/prince/object.h')
-rw-r--r--engines/prince/object.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/engines/prince/object.h b/engines/prince/object.h
index 3a8859c196..2c2dbc9fbf 100644
--- a/engines/prince/object.h
+++ b/engines/prince/object.h
@@ -30,18 +30,19 @@ namespace Prince {
class Object {
public:
- Object();
+ Object();
- bool loadFromStream(Common::SeekableReadStream &stream);
- Graphics::Surface *getSurface() const { return _surface; }
+ bool loadFromStream(Common::SeekableReadStream &stream);
+ Graphics::Surface *getSurface() const { return _surface; }
private:
- void loadSurface(Common::SeekableReadStream &stream);
+ void loadSurface(Common::SeekableReadStream &stream);
- Graphics::Surface *_surface;
- uint16 _x, _y, _z;
+ Graphics::Surface *_surface;
+ uint16 _x, _y, _z;
};
}
#endif
+/* vim: set tabstop=4 noexpandtab: */