diff options
Diffstat (limited to 'engines/titanic/debugger.h')
-rw-r--r-- | engines/titanic/debugger.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/engines/titanic/debugger.h b/engines/titanic/debugger.h index 5edb7cb324..919d6c5358 100644 --- a/engines/titanic/debugger.h +++ b/engines/titanic/debugger.h @@ -44,27 +44,27 @@ private: * Find a room by name or number */ CRoomItem *findRoom(const char *name); - + /** * Find a node within a room by name or number */ CNodeItem *findNode(CRoomItem *room, const char *name); - + /** * Find a view within a room node by name or number */ CViewItem *findView(CNodeItem *node, const char *name); - + /** * List all the rooms in the game */ void listRooms(); - + /** * List the nodes within a room */ void listRoom(CRoomItem *room); - + /** * List the views within a room node */ @@ -89,6 +89,11 @@ private: * Item handling */ bool cmdItem(int argc, const char **argv); + + /** + * Shows a movie + */ + bool cmdMovie(int argc, const char **argv); protected: TitanicEngine *_vm; public: |