aboutsummaryrefslogtreecommitdiff
path: root/engines/made/database.h
diff options
context:
space:
mode:
authorBenjamin Haisch2008-05-29 12:57:11 +0000
committerBenjamin Haisch2008-05-29 12:57:11 +0000
commitb9776d46b24476a5d4f30eb4fc993ce6a4cdb76f (patch)
tree547213cd83bfe6b81aeacf56069f527f4deb453b /engines/made/database.h
parent3f91c579fcdc4ed43a18792f6bd84d9e156efa13 (diff)
downloadscummvm-rg350-b9776d46b24476a5d4f30eb4fc993ce6a4cdb76f.tar.gz
scummvm-rg350-b9776d46b24476a5d4f30eb4fc993ce6a4cdb76f.tar.bz2
scummvm-rg350-b9776d46b24476a5d4f30eb4fc993ce6a4cdb76f.zip
- Implemented opcodes: sfHomeText, sfDrawAnimPic
- Comments on unneeded opcodes - Simplified getting/setting strings in Objects svn-id: r32361
Diffstat (limited to 'engines/made/database.h')
-rw-r--r--engines/made/database.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/made/database.h b/engines/made/database.h
index 49655e41ae..476439c1e2 100644
--- a/engines/made/database.h
+++ b/engines/made/database.h
@@ -130,6 +130,9 @@ public:
int16 getVar(int16 index);
void setVar(int16 index, int16 value);
+ const char *getObjectString(int16 index);
+ void setObjectString(int16 index, const char *str);
+
virtual int16 *getObjectPropertyPtr(int16 objectIndex, int16 propertyId, int16 &propertyFlag) = 0;
virtual const char *getString(uint16 offset) = 0;
virtual bool getSavegameDescription(const char *filename, Common::String &description) = 0;