aboutsummaryrefslogtreecommitdiff
path: root/saga/objectmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'saga/objectmap.h')
-rw-r--r--saga/objectmap.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/saga/objectmap.h b/saga/objectmap.h
index ffe3cbbf9a..3a856161c4 100644
--- a/saga/objectmap.h
+++ b/saga/objectmap.h
@@ -45,14 +45,21 @@ public:
int getSceneNumber() const {
return _nameNumber;
}
-
- int getEntranceNumber() const {
+ int getActorsEntrance() const {
+ return _scriptNumber;
+ }
+ int getScriptNumber() const {
return _scriptNumber;
}
int getRightButtonVerb() const {
return _rightButtonVerb;
}
-
+ int getFlags() const {
+ return _flags;
+ }
+ int getDirection() const {
+ return ((_flags >> 4) & 0xF);
+ }
void draw(SURFACE *ds, int color);
bool hitTest(const Point &testPoint);
private: