aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/commands/seqcommand.h
diff options
context:
space:
mode:
authorĽubomír Remák2018-08-04 18:41:33 +0200
committerEugene Sandulenko2018-08-25 23:12:01 +0200
commit4633b8398642f3005827780313c25479689a72dc (patch)
tree5299a70ec917c73f5b477e5e4add3d6773e9d177 /engines/mutationofjb/commands/seqcommand.h
parenta25715a29b0587ae6795eef63a575172e2cb971d (diff)
downloadscummvm-rg350-4633b8398642f3005827780313c25479689a72dc.tar.gz
scummvm-rg350-4633b8398642f3005827780313c25479689a72dc.tar.bz2
scummvm-rg350-4633b8398642f3005827780313c25479689a72dc.zip
MUTATIONOFJB: Improve documentation and naming.
Diffstat (limited to 'engines/mutationofjb/commands/seqcommand.h')
-rw-r--r--engines/mutationofjb/commands/seqcommand.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/mutationofjb/commands/seqcommand.h b/engines/mutationofjb/commands/seqcommand.h
index 6c969e935f..e37f77ff70 100644
--- a/engines/mutationofjb/commands/seqcommand.h
+++ b/engines/mutationofjb/commands/seqcommand.h
@@ -33,6 +33,9 @@ public:
virtual void transition(ScriptParseContext &parseCtx, Command *oldCommand, Command *newCommand, CommandParser *newCommandParser) override;
};
+/**
+ * Base class for sequential commands.
+ */
class SeqCommand : public Command {
public:
SeqCommand() : _nextCommand(nullptr) {}