Otclient  14/8/2020
declarations.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2020 OTClient <https://github.com/edubart/otclient>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22 
23 #ifndef FRAMEWORK_GRAPHICS_DECLARATIONS_H
24 #define FRAMEWORK_GRAPHICS_DECLARATIONS_H
25 
26 #include <framework/global.h>
27 #include "glutil.h"
28 
29 class Texture;
30 class TextureManager;
31 class Image;
32 class AnimatedTexture;
33 class BitmapFont;
34 class CachedText;
35 class FrameBuffer;
36 class FrameBufferManager;
37 class Shader;
38 class ShaderProgram;
40 class Particle;
41 class ParticleType;
42 class ParticleEmitter;
43 class ParticleAffector;
44 class ParticleSystem;
45 class ParticleEffect;
47 
64 typedef std::vector<ShaderPtr> ShaderList;
65 
66 #endif
ParticleEffectTypePtr
stdext::shared_object_ptr< ParticleEffectType > ParticleEffectTypePtr
Definition: declarations.h:63
ParticleAffectorPtr
stdext::shared_object_ptr< ParticleAffector > ParticleAffectorPtr
Definition: declarations.h:60
ShaderList
std::vector< ShaderPtr > ShaderList
Definition: declarations.h:64
ShaderProgramPtr
stdext::shared_object_ptr< ShaderProgram > ShaderProgramPtr
Definition: declarations.h:55
Particle
Definition: particle.h:29
ParticlePtr
stdext::shared_object_ptr< Particle > ParticlePtr
Definition: declarations.h:57
ParticleAffector
Definition: particleaffector.h:29
ParticleEffectType
Definition: particleeffect.h:31
FrameBufferPtr
stdext::shared_object_ptr< FrameBuffer > FrameBufferPtr
Definition: declarations.h:53
Texture
Definition: texture.h:28
CachedText
Definition: cachedtext.h:29
ParticleEmitter
Definition: particleemitter.h:32
ParticleTypePtr
stdext::shared_object_ptr< ParticleType > ParticleTypePtr
Definition: declarations.h:58
CachedTextPtr
stdext::shared_object_ptr< CachedText > CachedTextPtr
Definition: declarations.h:52
ParticleEffectPtr
stdext::shared_object_ptr< ParticleEffect > ParticleEffectPtr
Definition: declarations.h:62
AnimatedTexturePtr
stdext::shared_object_ptr< AnimatedTexture > AnimatedTexturePtr
Definition: declarations.h:50
ShaderPtr
stdext::shared_object_ptr< Shader > ShaderPtr
Definition: declarations.h:54
AnimatedTexture
Definition: animatedtexture.h:29
BitmapFont
Definition: bitmapfont.h:32
ImagePtr
stdext::shared_object_ptr< Image > ImagePtr
Definition: declarations.h:46
ParticleEffect
Definition: particleeffect.h:48
glutil.h
Image
Definition: image.h:29
ParticleEmitterPtr
stdext::shared_object_ptr< ParticleEmitter > ParticleEmitterPtr
Definition: declarations.h:59
TexturePtr
stdext::shared_object_ptr< Texture > TexturePtr
Definition: declarations.h:49
PainterShaderProgram
Definition: paintershaderprogram.h:30
FrameBuffer
Definition: framebuffer.h:29
TextureManager
Definition: texturemanager.h:29
ParticleSystemPtr
stdext::shared_object_ptr< ParticleSystem > ParticleSystemPtr
Definition: declarations.h:61
PainterShaderProgramPtr
stdext::shared_object_ptr< PainterShaderProgram > PainterShaderProgramPtr
Definition: declarations.h:56
BitmapFontPtr
stdext::shared_object_ptr< BitmapFont > BitmapFontPtr
Definition: declarations.h:51
stdext::shared_object_ptr
Definition: shared_object.h:39
ParticleType
Definition: particletype.h:31
Shader
Definition: shader.h:28
FrameBufferManager
Definition: framebuffermanager.h:29
ParticleSystem
Definition: particlesystem.h:31
global.h
ShaderProgram
Definition: shaderprogram.h:30