aboutsummaryrefslogtreecommitdiff
path: root/saga/objectmap.h
diff options
context:
space:
mode:
authorAndrew Kurushin2005-01-15 20:12:49 +0000
committerAndrew Kurushin2005-01-15 20:12:49 +0000
commit2f20dd57c2da6507a65811ce14cadb4bef1012ff (patch)
tree43f755456057d2d04cfd74881857754db06d9c06 /saga/objectmap.h
parent139f57a29d27a1c148563a7c8f729f7c3b3e4f3e (diff)
downloadscummvm-rg350-2f20dd57c2da6507a65811ce14cadb4bef1012ff.tar.gz
scummvm-rg350-2f20dd57c2da6507a65811ce14cadb4bef1012ff.tar.bz2
scummvm-rg350-2f20dd57c2da6507a65811ce14cadb4bef1012ff.zip
some work in progress on verb stuff:
- many structers and fields renamed to proper names - added missing functions svn-id: r16562
Diffstat (limited to 'saga/objectmap.h')
-rw-r--r--saga/objectmap.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/saga/objectmap.h b/saga/objectmap.h
index 05b7a59189..ffe3cbbf9a 100644
--- a/saga/objectmap.h
+++ b/saga/objectmap.h
@@ -49,13 +49,16 @@ public:
int getEntranceNumber() const {
return _scriptNumber;
}
+ int getRightButtonVerb() const {
+ return _rightButtonVerb;
+ }
void draw(SURFACE *ds, int color);
bool hitTest(const Point &testPoint);
private:
int _flags; // HitZoneFlags
int _clickAreasCount;
- int _defaultVerb;
+ int _rightButtonVerb;
int _nameNumber;
int _scriptNumber;