aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/macventure.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/macventure/macventure.h')
-rw-r--r--engines/macventure/macventure.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/engines/macventure/macventure.h b/engines/macventure/macventure.h
index ae926f0a5c..d4ead54457 100644
--- a/engines/macventure/macventure.h
+++ b/engines/macventure/macventure.h
@@ -19,3 +19,28 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
+
+#ifndef MACVENTURE_H
+#define MACVENTURE_H
+
+#include "engines/engine.h"
+
+struct ADGameDescription;
+
+namespace MacVenture {
+
+class MacVentureEngine : public Engine {
+
+public:
+ MacVentureEngine(OSystem *syst, const ADGameDescription *gameDesc);
+ ~MacVentureEngine();
+
+ virtual Common::Error run();
+
+private:
+ const ADGameDescription *_gameDescription;
+
+};
+} // End of namespace MacVenture
+
+#endif \ No newline at end of file