aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/encryptedfile.h
diff options
context:
space:
mode:
authorĽubomír Remák2018-02-14 21:41:09 +0100
committerEugene Sandulenko2018-08-25 23:12:01 +0200
commit95cd6b74426b555e58577be0c46006a60fd77979 (patch)
tree574a1eff3f142e92c1f9ef511f27acc5e9adb674 /engines/mutationofjb/encryptedfile.h
parent764ee3a5a3f9f600b8d369d8474d2702b22f73f7 (diff)
downloadscummvm-rg350-95cd6b74426b555e58577be0c46006a60fd77979.tar.gz
scummvm-rg350-95cd6b74426b555e58577be0c46006a60fd77979.tar.bz2
scummvm-rg350-95cd6b74426b555e58577be0c46006a60fd77979.zip
MUTATIONOFJB: Load and draw scene background
Diffstat (limited to 'engines/mutationofjb/encryptedfile.h')
-rw-r--r--engines/mutationofjb/encryptedfile.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/engines/mutationofjb/encryptedfile.h b/engines/mutationofjb/encryptedfile.h
new file mode 100644
index 0000000000..69f6f6251e
--- /dev/null
+++ b/engines/mutationofjb/encryptedfile.h
@@ -0,0 +1,32 @@
+/* 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.
+ *
+ */
+
+#include "common/file.h"
+
+namespace MutationOfJB {
+
+class EncryptedFile : public Common::File {
+public:
+ virtual uint32 read(void *dataPtr, uint32 dataSize) override;
+};
+
+}