diff options
Diffstat (limited to 'engines/lure/room.h')
-rw-r--r-- | engines/lure/room.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/lure/room.h b/engines/lure/room.h index 3eb90a714a..2a053617f4 100644 --- a/engines/lure/room.h +++ b/engines/lure/room.h @@ -64,6 +64,7 @@ private: uint16 _destRoomNumber; bool _isExit; char _hotspotName[MAX_HOTSPOT_NAME_SIZE + MAX_ACTION_NAME_SIZE]; + char _statusLine[MAX_DESC_SIZE]; HotspotData *_hotspot; bool _showInfo; uint8 _numLayers; @@ -106,6 +107,7 @@ public: void setTalkDialog(uint16 characterId, uint16 descId); void setCursorState(CursorState state) { _cursorState = state; } bool checkInTalkDialog(); + char *statusLine() { return _statusLine; } }; } // end of namespace Lure |