aboutsummaryrefslogtreecommitdiff
path: root/engines/chewy/graphics.h
diff options
context:
space:
mode:
authorFilippos Karapetis2016-09-19 09:40:19 +0300
committerFilippos Karapetis2016-10-03 00:32:56 +0300
commit03aae708550ce42b86656b905cd42448fa64ed2f (patch)
tree4226282ff12e4a3d8557bdcfe3346c8f4847314e /engines/chewy/graphics.h
parent182debe9083a57c8f96ea5214450193feb2c6558 (diff)
downloadscummvm-rg350-03aae708550ce42b86656b905cd42448fa64ed2f.tar.gz
scummvm-rg350-03aae708550ce42b86656b905cd42448fa64ed2f.tar.bz2
scummvm-rg350-03aae708550ce42b86656b905cd42448fa64ed2f.zip
CHEWY: Add a graphics class and an image drawing test
Diffstat (limited to 'engines/chewy/graphics.h')
-rw-r--r--engines/chewy/graphics.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/engines/chewy/graphics.h b/engines/chewy/graphics.h
new file mode 100644
index 0000000000..601b419171
--- /dev/null
+++ b/engines/chewy/graphics.h
@@ -0,0 +1,42 @@
+/* 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_GRAPHICS_H
+#define CHEWY_GRAPHICS_H
+
+#include "chewy/chewy.h"
+
+namespace Chewy {
+
+class Graphics {
+public:
+ Graphics() {}
+ ~Graphics() {}
+
+ void drawImage(Common::String filename, int imageNum);
+private:
+
+};
+
+} // End of namespace Chewy
+
+#endif