tibia-client/src/framework/graphics/declarations.h

23 lines
566 B
C
Raw Normal View History

2011-08-15 16:06:15 +02:00
#ifndef FRAMEWORK_GRAPHICS_DECLARATIONS_H
#define FRAMEWORK_GRAPHICS_DECLARATIONS_H
2011-08-14 04:09:11 +02:00
2011-08-15 16:06:15 +02:00
#include <framework/global.h>
2011-08-14 04:09:11 +02:00
class Texture;
2011-08-28 00:32:16 +02:00
class AnimatedTexture;
2011-08-14 04:09:11 +02:00
class Font;
class Image;
class BorderImage;
class FrameBuffer;
typedef std::weak_ptr<Texture> TextureWeakPtr;
typedef std::shared_ptr<Texture> TexturePtr;
2011-08-28 00:32:16 +02:00
typedef std::shared_ptr<AnimatedTexture> AnimatedTexturePtr;
2011-08-14 04:09:11 +02:00
typedef std::shared_ptr<Font> FontPtr;
typedef std::shared_ptr<Image> ImagePtr;
typedef std::shared_ptr<BorderImage> BorderImagePtr;
typedef std::shared_ptr<FrameBuffer> FrameBufferPtr;
#endif