aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/pet_control/pet_control.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-08-02 19:27:00 -0400
committerPaul Gilbert2016-08-02 19:27:00 -0400
commit99b353b9fef51eccbf88b1bfa8a69381369dfd50 (patch)
treea856aa3f2d725c5ee8caa9f0f9b5d8887843785a /engines/titanic/pet_control/pet_control.h
parent17762761fe01b467bf2df2e33b3d7293eb40c26c (diff)
downloadscummvm-rg350-99b353b9fef51eccbf88b1bfa8a69381369dfd50.tar.gz
scummvm-rg350-99b353b9fef51eccbf88b1bfa8a69381369dfd50.tar.bz2
scummvm-rg350-99b353b9fef51eccbf88b1bfa8a69381369dfd50.zip
TITANIC: Added CPETPosition enterViewMsg
Diffstat (limited to 'engines/titanic/pet_control/pet_control.h')
-rw-r--r--engines/titanic/pet_control/pet_control.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/engines/titanic/pet_control/pet_control.h b/engines/titanic/pet_control/pet_control.h
index ef7e49d4e4..a86d110458 100644
--- a/engines/titanic/pet_control/pet_control.h
+++ b/engines/titanic/pet_control/pet_control.h
@@ -470,12 +470,20 @@ public:
return _rooms.getRoomNum();
}
- void setRooms1D0(int v) {
- _rooms.set1D0(v);
+ /**
+ * Sets the entry number for arriving at the well
+ */
+ void setRoomsWellEntry(int entryNum) {
+ _rooms.setWellEntry(entryNum);
}
- int getRooms1D0() const {
- return _rooms.get1D0();
+
+ /**
+ * Gets the entry number used when last arriving at the well
+ */
+ int getRoomsWellEntry() const {
+ return _rooms.getWellEntry();
}
+
void setRooms1CC(int v) {
_rooms.set1CC(v);
}