aboutsummaryrefslogtreecommitdiff
path: root/engines/access/amazon/amazon_room.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-08-05 23:23:49 -0400
committerPaul Gilbert2014-08-05 23:23:49 -0400
commit8e43a6c5280e2b695753d4a0b6810811f1bd393f (patch)
treed4cd7a9228e65fb53f9d3ca4d5393ebefcb22cfa /engines/access/amazon/amazon_room.h
parent7d605ce57316c86a247cf978e6b123b23045659c (diff)
downloadscummvm-rg350-8e43a6c5280e2b695753d4a0b6810811f1bd393f.tar.gz
scummvm-rg350-8e43a6c5280e2b695753d4a0b6810811f1bd393f.tar.bz2
scummvm-rg350-8e43a6c5280e2b695753d4a0b6810811f1bd393f.zip
ACCESS: Add scripts classes and Amazon room setup
Diffstat (limited to 'engines/access/amazon/amazon_room.h')
-rw-r--r--engines/access/amazon/amazon_room.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/engines/access/amazon/amazon_room.h b/engines/access/amazon/amazon_room.h
new file mode 100644
index 0000000000..6d13a4e52c
--- /dev/null
+++ b/engines/access/amazon/amazon_room.h
@@ -0,0 +1,54 @@
+/* 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 ACCESS_AMAZON_ROOM_H
+#define ACCESS_AMAZON_ROOM_H
+
+#include "common/scummsys.h"
+#include "access/room.h"
+
+namespace Access {
+
+class AccessEngine;
+
+namespace Amazon {
+
+class AmazonRoom : public Room {
+private:
+ bool _antOutFlag;
+
+ void roomSet();
+
+ void roomMenu();
+protected:
+ virtual void reloadRoom();
+
+ virtual void reloadRoom1();
+public:
+ AmazonRoom(AccessEngine *vm);
+};
+
+} // End of namespace Amazon
+
+} // End of namespace Access
+
+#endif /* ACCESS_AMAZON_ROOM_H */