aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/items.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-01-01 19:15:08 -1000
committerPaul Gilbert2015-01-01 19:15:08 -1000
commit971a70a2b3cea2ab6d0d77b130c8300ad5f05ca7 (patch)
treec558bbc09d1061779b8821b2446be9a27013a9d3 /engines/xeen/items.h
parent5135439bbd64289e4c6c780f4b4da03ce40e75be (diff)
downloadscummvm-rg350-971a70a2b3cea2ab6d0d77b130c8300ad5f05ca7.tar.gz
scummvm-rg350-971a70a2b3cea2ab6d0d77b130c8300ad5f05ca7.tar.bz2
scummvm-rg350-971a70a2b3cea2ab6d0d77b130c8300ad5f05ca7.zip
XEEN: Implemented party and condition classes
Diffstat (limited to 'engines/xeen/items.h')
-rw-r--r--engines/xeen/items.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/engines/xeen/items.h b/engines/xeen/items.h
new file mode 100644
index 0000000000..eba2354da5
--- /dev/null
+++ b/engines/xeen/items.h
@@ -0,0 +1,45 @@
+/* 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 XEEN_ITEMS_H
+#define XEEN_ITEMS_H
+
+#include "common/scummsys.h"
+#include "common/serializer.h"
+
+namespace Xeen {
+
+class XeenItem {
+public:
+ int _material;
+ int _name;
+ int _bonusFlags;
+ bool _equipped;
+public:
+ XeenItem();
+
+ void synchronize(Common::Serializer &s);
+};
+
+} // End of namespace Xeen
+
+#endif /* XEEN_ITEMS_H */