ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
qd_fwd.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 QDENGINE_QD_FWD_H
23 #define QDENGINE_QD_FWD_H
24 
25 #include "common/str.h"
26 #include "common/std/list.h"
27 #include "common/std/vector.h"
28 
29 namespace Common {
30 class SeekableReadStream;
31 }
32 
33 namespace QDEngine {
34 
35 class qdGameScene;
36 typedef Std::list<qdGameScene *> qdGameSceneList;
37 
38 class qdGameEnd;
39 typedef Std::list<qdGameEnd *> qdGameEndList;
40 
41 class qdVideo;
42 typedef Std::list<qdVideo *> qdVideoList;
43 
44 class qdTriggerChain;
45 typedef Std::list<qdTriggerChain *> qdTriggerChainList;
46 
47 class qdGameObject;
48 typedef Std::list<qdGameObject *> qdGameObjectList;
49 
50 class qdMiniGame;
51 typedef Std::list<qdMiniGame *> qdMiniGameList;
52 
53 class qdCounter;
54 typedef Std::list<qdCounter *> qdCounterList;
55 
56 class qdGridZone;
57 typedef Std::list<qdGridZone *> qdGridZoneList;
58 
59 class qdMusicTrack;
60 typedef Std::list<qdMusicTrack *> qdMusicTrackList;
61 
62 class qdCondition;
63 typedef Std::list<qdCondition *> qdConditionList;
64 
65 class qdSound;
66 typedef Std::list<qdSound *> qdSoundList;
67 
68 class qdAnimation;
69 typedef Std::list<qdAnimation *> qdAnimationList;
70 
71 class qdAnimationSet;
72 typedef Std::list<qdAnimationSet *> qdAnimationSetList;
73 
74 class qdInventory;
75 typedef Std::list<qdInventory *> qdInventoryList;
76 
77 class qdTriggerChain;
78 typedef Std::list<qdTriggerChain *> qdTriggerChainList;
79 
80 class qdGameObjectState;
81 class qdGameObjectStateStatic;
82 class qdGameObjectStateWalk;
83 class qdGameObjectStateMask;
84 typedef Std::vector<qdGameObjectState *> qdGameObjectStateVector;
85 
86 class qdGameObjectMouse;
87 class qdGameObjectMoving;
88 class qdNamedObject;
89 class qdNamedObjectReference;
90 class qdScaleInfo;
91 
92 class qdInterfaceButton;
93 
94 class qdGameDispatcher;
95 
96 class qdFontInfo;
97 typedef Std::list<qdFontInfo *> qdFontInfoList;
98 
99 } // namespace QDEngine
100 
101 #endif // QDENGINE_QD_FWD_H
Definition: list.h:39
Базовый класс для игровых ресурсов.
Definition: console.h:28
Definition: algorithm.h:29