diff options
Diffstat (limited to 'engines/gob/rxyfile.h')
-rw-r--r-- | engines/gob/rxyfile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/gob/rxyfile.h b/engines/gob/rxyfile.h index 828f8b73c7..bc9600b5b0 100644 --- a/engines/gob/rxyfile.h +++ b/engines/gob/rxyfile.h @@ -46,6 +46,7 @@ public: }; RXYFile(Common::SeekableReadStream &rxy); + RXYFile(uint16 width, uint16 height); ~RXYFile(); uint size() const; @@ -57,6 +58,8 @@ public: const Coordinates &operator[](uint i) const; + uint16 add(uint16 left, uint16 top, uint16 right, uint16 bottom); + private: typedef Common::Array<Coordinates> CoordArray; |