aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/entities.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-01-18 00:13:37 +0200
committerEugene Sandulenko2015-12-27 15:39:52 +0100
commit879425385e07e9c8712908066102c0c102e3e40c (patch)
treeaed15387ea2bda02860a63750f4f716b19f91f11 /engines/wage/entities.h
parente8194a6b79e21eed0647a6358802e8349518872d (diff)
downloadscummvm-rg350-879425385e07e9c8712908066102c0c102e3e40c.tar.gz
scummvm-rg350-879425385e07e9c8712908066102c0c102e3e40c.tar.bz2
scummvm-rg350-879425385e07e9c8712908066102c0c102e3e40c.zip
WAGE: Started implementing script execution.
Signed-off-by: Eugene Sandulenko <sev@scummvm.org>
Diffstat (limited to 'engines/wage/entities.h')
-rw-r--r--engines/wage/entities.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/wage/entities.h b/engines/wage/entities.h
index 4ac63c5adb..f99d6d189a 100644
--- a/engines/wage/entities.h
+++ b/engines/wage/entities.h
@@ -59,6 +59,7 @@ class Scene;
class Script;
class Context {
+public:
enum StatVariables {
/** The base physical accuracy of the player. */
PHYS_ACC_BAS = 0,
@@ -118,6 +119,8 @@ public:
}
void setDesignBounds(Common::Rect *bounds);
+
+ String toString() { return _name; }
};
class Chr : public Designed {