aboutsummaryrefslogtreecommitdiff
path: root/engines/chewy/chewy.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-03-16 18:36:48 +0100
committerFilippos Karapetis2016-10-03 00:32:32 +0300
commit3596672735c980e94dffd63d7c29e416ec98365e (patch)
tree564989a376107f3447eeec0a04d74831f658961a /engines/chewy/chewy.h
parent437f1d1cd154fd9b1817f2bdb0fc3f89655c1722 (diff)
downloadscummvm-rg350-3596672735c980e94dffd63d7c29e416ec98365e.tar.gz
scummvm-rg350-3596672735c980e94dffd63d7c29e416ec98365e.tar.bz2
scummvm-rg350-3596672735c980e94dffd63d7c29e416ec98365e.zip
CHEWY: Added engine stub
Diffstat (limited to 'engines/chewy/chewy.h')
-rw-r--r--engines/chewy/chewy.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/engines/chewy/chewy.h b/engines/chewy/chewy.h
new file mode 100644
index 0000000000..99eafe6646
--- /dev/null
+++ b/engines/chewy/chewy.h
@@ -0,0 +1,67 @@
+/* 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 CHEWY_H
+#define CHEWY_H
+
+
+#include "common/scummsys.h"
+#include "common/file.h"
+#include "common/util.h"
+#include "common/str.h"
+#include "common/hashmap.h"
+#include "common/hash-str.h"
+#include "common/random.h"
+
+#include "engines/engine.h"
+
+namespace Chewy {
+
+struct ChewyGameDescription;
+
+class ChewyEngine : public Engine {
+
+protected:
+ // Engine APIs
+ virtual Common::Error run();
+ virtual bool hasFeature(EngineFeature f) const;
+
+ void shutdown();
+
+ void initialize();
+
+public:
+ ChewyEngine(OSystem *syst, const ChewyGameDescription *gameDesc);
+ virtual ~ChewyEngine();
+
+ int getGameType() const;
+ uint32 getFeatures() const;
+ Common::Language getLanguage() const;
+ Common::Platform getPlatform() const;
+
+ const ChewyGameDescription *_gameDescription;
+ Common::RandomSource _rnd;
+};
+
+} // End of namespace Chewy
+
+#endif