aboutsummaryrefslogtreecommitdiff
path: root/engines/access/martian/martian_scripts.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-08-20 23:36:57 -0400
committerPaul Gilbert2014-08-20 23:36:57 -0400
commitafc41c7eecc5c8d6b410534b5c66aa02807d11cb (patch)
tree95c2aefe26b35c7214e09c92679d3f6fcc62bed0 /engines/access/martian/martian_scripts.h
parenta8dd2defaa3a6680102e230d091d705d54f87d7e (diff)
downloadscummvm-rg350-afc41c7eecc5c8d6b410534b5c66aa02807d11cb.tar.gz
scummvm-rg350-afc41c7eecc5c8d6b410534b5c66aa02807d11cb.tar.bz2
scummvm-rg350-afc41c7eecc5c8d6b410534b5c66aa02807d11cb.zip
ACCESS: Added initial resources and detection entry for Martian Memorandum
Diffstat (limited to 'engines/access/martian/martian_scripts.h')
-rw-r--r--engines/access/martian/martian_scripts.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/engines/access/martian/martian_scripts.h b/engines/access/martian/martian_scripts.h
new file mode 100644
index 0000000000..9f90643e22
--- /dev/null
+++ b/engines/access/martian/martian_scripts.h
@@ -0,0 +1,49 @@
+/* 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 ACCESS_MARTIAN_SCRIPTS_H
+#define ACCESS_MARTIAN_SCRIPTS_H
+
+#include "common/scummsys.h"
+#include "access/scripts.h"
+
+namespace Access {
+
+namespace Martian {
+
+class MartianEngine;
+
+class MartianScripts: public Scripts {
+private:
+ MartianEngine *_game;
+protected:
+ virtual void executeSpecial(int commandIndex, int param1, int param2);
+ virtual void executeCommand(int commandIndex);
+public:
+ MartianScripts(AccessEngine *vm);
+};
+
+} // End of namespace Martian
+
+} // End of namespace Access
+
+#endif /* ACCESS_MARTIAN_SCRIPTS_H */