ScummVM API documentation
section3.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_SECTION3_H
23 #define M4_RIDDLE_ROOMS_SECTION3_H
24 
25 #include "m4/riddle/rooms/section.h"
26 #include "m4/riddle/rooms/section3/room301.h"
27 #include "m4/riddle/rooms/section3/room303.h"
28 #include "m4/riddle/rooms/section3/room304.h"
29 #include "m4/riddle/rooms/section3/room305.h"
30 #include "m4/riddle/rooms/section3/room309.h"
31 #include "m4/riddle/rooms/section3/room352.h"
32 #include "m4/riddle/rooms/section3/room354.h"
33 
34 namespace M4 {
35 namespace Riddle {
36 namespace Rooms {
37 
38 extern const int16 S3_NORMAL_DIRS[];
39 extern const char *S3_NORMAL_NAMES[];
40 extern const int16 S3_SHADOW_DIRS[];
41 extern const char *S3_SHADOW_NAMES[];
42 extern const int16 S3_NORMAL_DIRS2[];
43 extern const char *S3_NORMAL_NAMES2[];
44 extern const int16 S3_SHADOW_DIRS2[];
45 extern const char *S3_SHADOW_NAMES2[];
46 
47 
48 class Section3 : public Section {
49 private:
50  Room301 _room301;
51  Room303 _room303;
52  Room304 _room304;
53  Room305 _room305;
54  Room309 _room309;
55  Room352 _room352;
56  Room354 _room354;
57 
58 public:
59  Section3();
60  virtual ~Section3() {}
61 
62  void daemon() override;
63 };
64 
65 } // namespace Rooms
66 } // namespace Riddle
67 } // namespace M4
68 
69 #endif
Definition: room352.h:31
Definition: room305.h:31
Definition: database.h:28
Definition: room309.h:31
Definition: room304.h:31
Definition: section.h:31
Definition: room354.h:31
Definition: section3.h:48
Definition: room301.h:31
Definition: room303.h:31