aboutsummaryrefslogtreecommitdiff
path: root/engines/access/room.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-08-05 22:17:30 -0400
committerPaul Gilbert2014-08-05 22:17:30 -0400
commit7d605ce57316c86a247cf978e6b123b23045659c (patch)
treed6fb956e8aa56fb2a1579c09211f8f6a3c696d70 /engines/access/room.h
parentf1309a7b0b7e98256b45e9977c62f040452d54c4 (diff)
downloadscummvm-rg350-7d605ce57316c86a247cf978e6b123b23045659c.tar.gz
scummvm-rg350-7d605ce57316c86a247cf978e6b123b23045659c.tar.bz2
scummvm-rg350-7d605ce57316c86a247cf978e6b123b23045659c.zip
ACCESS: Implement outer room handler
Diffstat (limited to 'engines/access/room.h')
-rw-r--r--engines/access/room.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/engines/access/room.h b/engines/access/room.h
new file mode 100644
index 0000000000..3b1a3347f9
--- /dev/null
+++ b/engines/access/room.h
@@ -0,0 +1,53 @@
+/* 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_ROOM_H
+#define ACCESS_ROOM_H
+
+#include "common/scummsys.h"
+
+namespace Access {
+
+class AccessEngine;
+
+class Room {
+private:
+ AccessEngine *_vm;
+
+ void roomLoop();
+public:
+ int _function;
+public:
+ Room(AccessEngine *vm);
+
+ void doRoom();
+
+ void doCommands();
+
+ void clearRoom();
+
+ void reloadRoom1();
+};
+
+} // End of namespace Access
+
+#endif /* ACCESS_ROOM_H */