ScummVM API documentation
section4.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef M4_RIDDLE_ROOMS_SECTION4_H
23 #define M4_RIDDLE_ROOMS_SECTION4_H
24 
25 #include "m4/riddle/rooms/section.h"
26 #include "m4/riddle/rooms/section4/room401.h"
27 #include "m4/riddle/rooms/section4/room402.h"
28 #include "m4/riddle/rooms/section4/room403.h"
29 #include "m4/riddle/rooms/section4/room404.h"
30 #include "m4/riddle/rooms/section4/room405.h"
31 #include "m4/riddle/rooms/section4/room406.h"
32 #include "m4/riddle/rooms/section4/room407.h"
33 #include "m4/riddle/rooms/section4/room408.h"
34 #include "m4/riddle/rooms/section4/room409.h"
35 #include "m4/riddle/rooms/section4/room410.h"
36 #include "m4/riddle/rooms/section4/room413.h"
37 #include "m4/riddle/rooms/section4/room456.h"
38 #include "m4/riddle/rooms/section4/room493.h"
39 #include "m4/riddle/rooms/section4/room494.h"
40 #include "m4/riddle/rooms/section4/room495.h"
41 
42 namespace M4 {
43 namespace Riddle {
44 namespace Rooms {
45 
46 extern const int16 S4_NORMAL_DIRS[];
47 extern const char *S4_NORMAL_NAMES[];
48 extern const int16 S4_SHADOW_DIRS[];
49 extern const char *S4_SHADOW_NAMES[];
50 
51 
52 class Section4 : public Section {
53 private:
54  Room401 _room401;
55  Room402 _room402;
56  Room403 _room403;
57  Room404 _room404;
58  Room405 _room405;
59  Room406 _room406;
60  Room407 _room407;
61  Room408 _room408;
62  Room409 _room409;
63  Room410 _room410;
64  Room413 _room413;
65  Room456 _room456;
66  Room493 _room493;
67  Room494 _room494;
68  Room495 _room495;
69 
70 public:
71  Section4();
72  virtual ~Section4() {}
73 
74  void daemon() override;
75 };
76 
77 } // namespace Rooms
78 } // namespace Riddle
79 } // namespace M4
80 
81 #endif
Definition: section4.h:52
Definition: room407.h:31
Definition: room406.h:31
Definition: room456.h:31
Definition: room495.h:31
Definition: room413.h:31
Definition: room405.h:31
Definition: room494.h:31
Definition: database.h:28
Definition: room410.h:31
Definition: room409.h:31
Definition: room402.h:31
Definition: room404.h:31
Definition: section.h:31
Definition: room493.h:31
Definition: room408.h:31
Definition: room401.h:31
Definition: room403.h:31