diff options
Diffstat (limited to 'engines/titanic/core/background.cpp')
-rw-r--r-- | engines/titanic/core/background.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/engines/titanic/core/background.cpp b/engines/titanic/core/background.cpp index 63aaf30ae0..ea3bdb01a8 100644 --- a/engines/titanic/core/background.cpp +++ b/engines/titanic/core/background.cpp @@ -49,4 +49,16 @@ void CBackground::load(SimpleFile *file) { CGameObject::load(file); } +bool CBackground::handleMessage(CStatusChangeMsg &msg) { + error("TODO: CBackground::handleMessage"); +} + +bool CBackground::handleMessage(CSetFrameMsg &msg) { + error("TODO: CBackground::handleMessage"); +} + +bool CBackground::handleMessage(CVisibleMsg &msg) { + error("TODO: CBackground::handleMessage"); +} + } // End of namespace Titanic |