aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular/globals_nebular.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-03-06 20:30:05 -0500
committerPaul Gilbert2014-03-06 20:30:05 -0500
commitc9186f51b9502a4cfb1881f2db4f92eeb6227144 (patch)
treea629dd4ab331e27572583ee09268fa24e161583b /engines/mads/nebular/globals_nebular.h
parent2d9bb392aeef7beab60986a57889eb38001407ef (diff)
downloadscummvm-rg350-c9186f51b9502a4cfb1881f2db4f92eeb6227144.tar.gz
scummvm-rg350-c9186f51b9502a4cfb1881f2db4f92eeb6227144.tar.bz2
scummvm-rg350-c9186f51b9502a4cfb1881f2db4f92eeb6227144.zip
MADS: Added in Rex Nebular globals class
Diffstat (limited to 'engines/mads/nebular/globals_nebular.h')
-rw-r--r--engines/mads/nebular/globals_nebular.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/engines/mads/nebular/globals_nebular.h b/engines/mads/nebular/globals_nebular.h
new file mode 100644
index 0000000000..0d8da78e42
--- /dev/null
+++ b/engines/mads/nebular/globals_nebular.h
@@ -0,0 +1,63 @@
+/* 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 MADS_GLOBALS_NEBULAR_H
+#define MADS_GLOBALS_NEBULAR_H
+
+#include "common/scummsys.h"
+#include "common/array.h"
+#include "mads/game.h"
+
+namespace MADS {
+
+namespace Nebular {
+
+class Globals {
+private:
+ Common::Array<uint16> _flags;
+public:
+ int _chairHotspotIndex;
+ int _v1;
+ int _v2;
+ int _v3;
+ int _v4;
+ int _v5;
+ int _v6;
+ int _v7;
+ int _v8;
+public:
+ /**
+ * Constructor
+ */
+ Globals();
+
+ /**
+ * Square brackets operator for accessing flags
+ */
+ uint16 &operator[](int idx) { return _flags[idx]; }
+};
+
+} // End of namespace Nebular
+
+} // End of namespace MADS
+
+#endif /* MADS_GLOBALS_NEBULAR_H */