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_BURGER_ROOMS_SECTION3_H
23 #define M4_BURGER_ROOMS_SECTION3_H
24 
25 #include "m4/burger/rooms/room.h"
26 #include "m4/burger/rooms/section.h"
27 #include "m4/burger/rooms/section3/room301.h"
28 #include "m4/burger/rooms/section3/room302.h"
29 #include "m4/burger/rooms/section3/room303.h"
30 #include "m4/burger/rooms/section3/room304.h"
31 #include "m4/burger/rooms/section3/room305.h"
32 #include "m4/burger/rooms/section3/room306.h"
33 #include "m4/burger/rooms/section3/room307.h"
34 #include "m4/burger/rooms/section3/room310.h"
35 #include "m4/burger/rooms/section3/mine.h"
36 
37 namespace M4 {
38 namespace Burger {
39 namespace Rooms {
40 
41 class Section3 : public Rooms::Section {
42 private:
43  Room301 _room301;
44  Room302 _room302;
45  Room303 _room303;
46  Room304 _room304;
47  Room305 _room305;
48  Room306 _room306;
49  Room307 _room307;
50  Room310 _room310;
51  Mine _mine;
52  int _random1 = 0;
53 
54  void mine_check_maze();
55 
56 public:
57  Section3();
58  virtual ~Section3() {}
59 
60  void init() override {
61  mine_check_maze();
62  }
63  void daemon() override;
64  void parser() override;
65 };
66 
67 } // namespace Rooms
68 } // namespace Burger
69 } // namespace M4
70 
71 #endif
Definition: section.h:31
Definition: room303.h:31
Definition: room307.h:31
Definition: room304.h:31
Definition: section3.h:41
Definition: room301.h:31
Definition: room310.h:31
Definition: database.h:28
void init() override
Definition: section3.h:60
Definition: room305.h:31
Definition: room302.h:31
Definition: room306.h:31
Definition: mine.h:81