diff options
author | Paul Gilbert | 2016-08-26 07:47:31 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-08-26 07:47:31 -0400 |
commit | 41ee7dd3717e8ff5451314fe62468ae64e8879c3 (patch) | |
tree | a4ccef80ac473336728b371e0e321e97213b7242 /engines/titanic/core | |
parent | e40caf40a17e50d9cab698eb9b806302e106f179 (diff) | |
download | scummvm-rg350-41ee7dd3717e8ff5451314fe62468ae64e8879c3.tar.gz scummvm-rg350-41ee7dd3717e8ff5451314fe62468ae64e8879c3.tar.bz2 scummvm-rg350-41ee7dd3717e8ff5451314fe62468ae64e8879c3.zip |
TITANIC: Implemented more game classes
Diffstat (limited to 'engines/titanic/core')
-rw-r--r-- | engines/titanic/core/saveable_object.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/titanic/core/saveable_object.cpp b/engines/titanic/core/saveable_object.cpp index 5fc2d7e738..6abf9c407a 100644 --- a/engines/titanic/core/saveable_object.cpp +++ b/engines/titanic/core/saveable_object.cpp @@ -165,6 +165,8 @@ #include "titanic/game/music_room_stop_phonograph_button.h" #include "titanic/game/music_system_lock.h" #include "titanic/game/nav_helmet.h" +#include "titanic/game/nav_helmet_on.h" +#include "titanic/game/nav_helmet_off.h" #include "titanic/game/navigation_computer.h" #include "titanic/game/no_nut_bowl.h" #include "titanic/game/nose_holder.h" @@ -575,6 +577,8 @@ DEFFN(CMusicRoomPhonograph); DEFFN(CMusicRoomStopPhonographButton); DEFFN(CMusicSystemLock); DEFFN(CNavHelmet); +DEFFN(CNavHelmetOn); +DEFFN(CNavHelmetOff); DEFFN(CNavigationComputer); DEFFN(CNoNutBowl); DEFFN(CNoseHolder); @@ -1162,6 +1166,8 @@ void CSaveableObject::initClassList() { ADDFN(CMusicRoomStopPhonographButton, CEjectPhonographButton); ADDFN(CMusicSystemLock, CDropTarget); ADDFN(CNavHelmet, CGameObject); + ADDFN(CNavHelmetOn, CGameObject); + ADDFN(CNavHelmetOff, CGameObject); ADDFN(CNavigationComputer, CGameObject); ADDFN(CNoNutBowl, CBackground); ADDFN(CNoseHolder, CDropTarget); |