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