aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/commands/endblockcommand.h
diff options
context:
space:
mode:
authorĽubomír Remák2018-03-20 22:15:23 +0100
committerEugene Sandulenko2018-08-25 23:12:01 +0200
commit7a081f0605f2282fdce907bedfc9cae55dc67ab7 (patch)
tree520e4fff4e6d582ab911f18d997d3f7048b22bee /engines/mutationofjb/commands/endblockcommand.h
parent1d84041508b3acaf7a47fde81e7e334c004507b8 (diff)
downloadscummvm-rg350-7a081f0605f2282fdce907bedfc9cae55dc67ab7.tar.gz
scummvm-rg350-7a081f0605f2282fdce907bedfc9cae55dc67ab7.tar.bz2
scummvm-rg350-7a081f0605f2282fdce907bedfc9cae55dc67ab7.zip
MUTATIONOFJB: Load local (room) scripts.
Diffstat (limited to 'engines/mutationofjb/commands/endblockcommand.h')
-rw-r--r--engines/mutationofjb/commands/endblockcommand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/mutationofjb/commands/endblockcommand.h b/engines/mutationofjb/commands/endblockcommand.h
index 24c4e5c432..3af86a3d82 100644
--- a/engines/mutationofjb/commands/endblockcommand.h
+++ b/engines/mutationofjb/commands/endblockcommand.h
@@ -35,9 +35,9 @@ class EndBlockCommandParser : public CommandParser {
public:
EndBlockCommandParser() : _elseFound(false), _ifTag(0) {}
- virtual bool parse(const Common::String &line, ScriptParseContext &parseCtx, Command *&command);
- virtual void transition(ScriptParseContext &parseCtx, Command *oldCommand, Command *newCommand, CommandParser *newCommandParser);
-
+ virtual bool parse(const Common::String &line, ScriptParseContext &parseCtx, Command *&command) override;
+ virtual void transition(ScriptParseContext &parseCtx, Command *oldCommand, Command *newCommand, CommandParser *newCommandParser) override;
+ virtual void finish(ScriptParseContext &parseCtx) override;
private:
bool _elseFound;
char _ifTag;