From 176c87dd4a2d5b0ee5563789797f269ac6113033 Mon Sep 17 00:00:00 2001 From: Ľubomír Remák Date: Tue, 30 Oct 2018 18:56:37 +0100 Subject: MUTATIONOFJB: Add stub for switching game chapter. --- engines/mutationofjb/commands/switchpartcommand.h | 47 +++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 engines/mutationofjb/commands/switchpartcommand.h (limited to 'engines/mutationofjb/commands/switchpartcommand.h') diff --git a/engines/mutationofjb/commands/switchpartcommand.h b/engines/mutationofjb/commands/switchpartcommand.h new file mode 100644 index 0000000000..ded49a53a7 --- /dev/null +++ b/engines/mutationofjb/commands/switchpartcommand.h @@ -0,0 +1,47 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef MUTATIONOFJB_SWITCHPARTCOMMAND_H +#define MUTATIONOFJB_SWITCHPARTCOMMAND_H + +#include "mutationofjb/commands/seqcommand.h" +#include "common/scummsys.h" + +namespace MutationOfJB { + +class ConversationTask; + +class SwitchPartCommandParser : public SeqCommandParser { +public: + virtual bool parse(const Common::String &line, ScriptParseContext &parseCtx, Command *&command) override; +}; + +class SwitchPartCommand : public SeqCommand { +public: + SwitchPartCommand() {} + virtual ExecuteResult execute(ScriptExecutionContext &scriptExecCtx) override; + virtual Common::String debugString() const override; +}; + +} + +#endif -- cgit v1.2.3