aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/pregob/pregob.h
diff options
context:
space:
mode:
authorSven Hesse2012-06-28 00:07:29 +0200
committerSven Hesse2012-07-30 01:44:42 +0200
commit4819468d9ad8218d04a2e4563ef71d7d00964515 (patch)
treeefab77f1b829be3847a9b4acb2d2efa1cf5c2630 /engines/gob/pregob/pregob.h
parent55c75756ea3c38cdd7074caff7085e35a658c9e7 (diff)
downloadscummvm-rg350-4819468d9ad8218d04a2e4563ef71d7d00964515.tar.gz
scummvm-rg350-4819468d9ad8218d04a2e4563ef71d7d00964515.tar.bz2
scummvm-rg350-4819468d9ad8218d04a2e4563ef71d7d00964515.zip
GOB: Add PreGob stubs for the Once Upon A Time games
Diffstat (limited to 'engines/gob/pregob/pregob.h')
-rw-r--r--engines/gob/pregob/pregob.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/engines/gob/pregob/pregob.h b/engines/gob/pregob/pregob.h
new file mode 100644
index 0000000000..e77e0ba17b
--- /dev/null
+++ b/engines/gob/pregob/pregob.h
@@ -0,0 +1,43 @@
+/* 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 GOB_PREGOB_PREGOB_H
+#define GOB_PREGOB_PREGOB_H
+
+namespace Gob {
+
+class GobEngine;
+
+class PreGob {
+public:
+ PreGob(GobEngine *vm);
+ virtual ~PreGob();
+
+ virtual void run() = 0;
+
+protected:
+ GobEngine *_vm;
+};
+
+} // End of namespace Gob
+
+#endif // GOB_PREGOB_PREGOB_H