aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/core.h
diff options
context:
space:
mode:
authorPaul Gilbert2011-09-12 21:51:22 +1000
committerPaul Gilbert2011-09-12 21:51:22 +1000
commit0c2dfd2efca1bee7babf9c6acadaca052e1aae25 (patch)
treeedb6502f5559c277f9f8d07f9d7b17b411ffb00c /engines/tsage/core.h
parenta029bb865634bb5138e335ed4acf098997785b9f (diff)
downloadscummvm-rg350-0c2dfd2efca1bee7babf9c6acadaca052e1aae25.tar.gz
scummvm-rg350-0c2dfd2efca1bee7babf9c6acadaca052e1aae25.tar.bz2
scummvm-rg350-0c2dfd2efca1bee7babf9c6acadaca052e1aae25.zip
TSAGE: Implemented Scene 800 - Jamison & Ryan
Diffstat (limited to 'engines/tsage/core.h')
-rw-r--r--engines/tsage/core.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/tsage/core.h b/engines/tsage/core.h
index ccb3817b16..a4af980afc 100644
--- a/engines/tsage/core.h
+++ b/engines/tsage/core.h
@@ -440,7 +440,7 @@ public:
class SceneHotspot : public SceneItem {
public:
SceneHotspot() : SceneItem() {}
-
+ virtual bool startAction(CursorType action, Event &event);
virtual Common::String getClassName() { return "SceneHotspot"; }
virtual void doAction(int action);
};
@@ -450,6 +450,7 @@ public:
int _resNum, _lookLineNum, _useLineNum, _talkLineNum;
NamedHotspot();
+
virtual void doAction(int action);
virtual Common::String getClassName() { return "NamedHotspot"; }
virtual void synchronize(Serializer &s);
@@ -823,6 +824,7 @@ public:
return _regionList[idx - 1];
}
void proc1(int v) { warning("TODO: WalkRegions::proc1"); }
+ void proc2(int v) { warning("TODO: WalkRegions::proc2"); }
};
/*--------------------------------------------------------------------------*/