diff options
Diffstat (limited to 'engines/titanic/pet_control/pet_section.h')
-rw-r--r-- | engines/titanic/pet_control/pet_section.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/titanic/pet_control/pet_section.h b/engines/titanic/pet_control/pet_section.h index d888e051c8..cf729b70a4 100644 --- a/engines/titanic/pet_control/pet_section.h +++ b/engines/titanic/pet_control/pet_section.h @@ -76,7 +76,10 @@ public: */ virtual Rect getBounds() { return Rect(); } - virtual void proc5(int val) {} + /** + * Called when a general change occurs + */ + virtual void changed(int changeType) {} /** * Following are handlers for the various messages that the PET can @@ -159,6 +162,9 @@ public: */ virtual CPetElement *getElement(uint id) { return nullptr; } + /** + * Special retrieval of glyph background image + */ virtual CGameObject *getBackground(int index) const { return nullptr; } /** |