aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/inventory.h
diff options
context:
space:
mode:
authorwhitertandrek2018-03-17 17:36:18 +0200
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commit5d1c4af5f6b1f197eb4c3af7dbc05b591047406d (patch)
tree9e30e98fc569aaf17ce97259ef7bf2255a07927a /engines/pink/objects/inventory.h
parentd058e5dfe6b146373ce89c5710b6e723de687da5 (diff)
downloadscummvm-rg350-5d1c4af5f6b1f197eb4c3af7dbc05b591047406d.tar.gz
scummvm-rg350-5d1c4af5f6b1f197eb4c3af7dbc05b591047406d.tar.bz2
scummvm-rg350-5d1c4af5f6b1f197eb4c3af7dbc05b591047406d.zip
PINK: Implemented MFC archive, some pink objects and their initialization
Thanks fullpipe engine developer for MFC archive
Diffstat (limited to 'engines/pink/objects/inventory.h')
-rw-r--r--engines/pink/objects/inventory.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/engines/pink/objects/inventory.h b/engines/pink/objects/inventory.h
new file mode 100644
index 0000000000..8827b4a4bd
--- /dev/null
+++ b/engines/pink/objects/inventory.h
@@ -0,0 +1,40 @@
+/* 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 PINK_INVENTORY_H
+#define PINK_INVENTORY_H
+
+#include "object.h"
+
+namespace Pink {
+
+ class InventoryMgr : public Object{
+ public:
+
+ private:
+ // array of inv items
+ // other fields. haven't RE them yet
+ };
+
+} // End of namespace Pink
+
+#endif