diff options
author | Max Horn | 2002-05-20 14:40:36 +0000 |
---|---|---|
committer | Max Horn | 2002-05-20 14:40:36 +0000 |
commit | 3035a307dcaa188740d08fac81bdf950fe005eb6 (patch) | |
tree | 1bb0fdf7e9102a30e57719c7173e3502b2d433c0 | |
parent | cb150cd11db05aeb25afa5f835d61325851bcd09 (diff) | |
download | scummvm-rg350-3035a307dcaa188740d08fac81bdf950fe005eb6.tar.gz scummvm-rg350-3035a307dcaa188740d08fac81bdf950fe005eb6.tar.bz2 scummvm-rg350-3035a307dcaa188740d08fac81bdf950fe005eb6.zip |
added isInCurrentRoom() method to class Actor
svn-id: r4361
-rw-r--r-- | actor.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -124,6 +124,8 @@ public: void remapActor(int b, int c, int d, int e); void walkActorOld(); + + bool isInCurrentRoom() { return room == _scumm->_currentRoom; } }; #endif |