aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/arboretum_gate.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-03-17 23:01:46 -0400
committerPaul Gilbert2016-03-17 23:01:46 -0400
commitea585b0aa53544e114cdb0080cacbcb324e6e1ff (patch)
tree313d0fff3ed2fe1f9d23da41acf7811b714735e3 /engines/titanic/game/arboretum_gate.cpp
parent04b8c75a9371d0ad353cbf4cc86da6087e94c7df (diff)
downloadscummvm-rg350-ea585b0aa53544e114cdb0080cacbcb324e6e1ff.tar.gz
scummvm-rg350-ea585b0aa53544e114cdb0080cacbcb324e6e1ff.tar.bz2
scummvm-rg350-ea585b0aa53544e114cdb0080cacbcb324e6e1ff.zip
TITANIC: Add some CEnterViewMsg stubs
Diffstat (limited to 'engines/titanic/game/arboretum_gate.cpp')
-rw-r--r--engines/titanic/game/arboretum_gate.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/engines/titanic/game/arboretum_gate.cpp b/engines/titanic/game/arboretum_gate.cpp
index 3f13676796..f4193b0f2f 100644
--- a/engines/titanic/game/arboretum_gate.cpp
+++ b/engines/titanic/game/arboretum_gate.cpp
@@ -133,4 +133,17 @@ void CArboretumGate::load(SimpleFile *file) {
CBackground::load(file);
}
+bool CArboretumGate::handleEvent(const CActMsg &msg) { return false; }
+bool CArboretumGate::handleEvent(const CLeaveViewMsg &msg) { return false; }
+bool CArboretumGate::handleEvent(const CTurnOff &msg) { return false; }
+bool CArboretumGate::handleEvent(const CMouseButtonDownMsg &msg) { return false; }
+
+bool CArboretumGate::handleEvent(const CEnterViewMsg &msg) {
+ warning("CArboretumGate::handleEvent");
+ return false;
+}
+
+bool CArboretumGate::handleEvent(const CTurnOn &msg) { return false; }
+bool CArboretumGate::handleEvent(const CMovieEndMsg &msg) { return false; }
+
} // End of namespace Titanic