diff options
Diffstat (limited to 'engines/titanic/core/room_item.h')
-rw-r--r-- | engines/titanic/core/room_item.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/titanic/core/room_item.h b/engines/titanic/core/room_item.h index 7248b4aac3..9e7f553407 100644 --- a/engines/titanic/core/room_item.h +++ b/engines/titanic/core/room_item.h @@ -59,6 +59,11 @@ public: * Return a movie clip for the room by name */ CMovieClip *findClip(const CString &name) { return _clipList.findByName(name); } + + /** + * Calculates the positioning of a node within the overall room + */ + void calcNodePosition(const Point &nodePos, double &xVal, double &yVal) const; }; } // End of namespace Titanic |