ScummVM API documentation
section9.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_SECTION9_H
23 #define M4_RIDDLE_ROOMS_SECTION9_H
24 
25 #include "m4/riddle/rooms/section.h"
26 #include "m4/riddle/rooms/section9/room901.h"
27 #include "m4/riddle/rooms/section9/room902.h"
28 #include "m4/riddle/rooms/section9/room903.h"
29 #include "m4/riddle/rooms/section9/room905.h"
30 #include "m4/riddle/rooms/section9/room906.h"
31 #include "m4/riddle/rooms/section9/room907.h"
32 #include "m4/riddle/rooms/section9/room908.h"
33 #include "m4/riddle/rooms/section9/room917.h"
34 #include "m4/riddle/rooms/section9/room918.h"
35 #include "m4/riddle/rooms/section9/room996.h"
36 
37 namespace M4 {
38 namespace Riddle {
39 namespace Rooms {
40 
41 class Section9 : public Section {
42 private:
43  Room901 _room901;
44  Room902 _room902;
45  Room903 _room903;
46  Room905 _room905;
47  Room906 _room906;
48  Room907 _room907;
49  Room908 _room908;
50  Room917 _room917;
51  Room918 _room918;
52  Room996 _room996;
53 public:
54  Section9();
55  virtual ~Section9() {}
56 
57  void daemon() override;
58 };
59 
60 } // namespace Rooms
61 } // namespace Riddle
62 } // namespace M4
63 
64 #endif
Definition: room907.h:32
Definition: room996.h:32
Definition: room906.h:32
Definition: room918.h:32
Definition: section9.h:41
Definition: room905.h:31
Definition: room917.h:32
Definition: database.h:28
Definition: room902.h:31
Definition: section.h:31
Definition: room908.h:32
Definition: room901.h:31
Definition: room903.h:31