#ifndef FRAMEWORK_GRAPHICS_DECLARATIONS_H #define FRAMEWORK_GRAPHICS_DECLARATIONS_H #include class Texture; class Font; class Image; class BorderImage; class FrameBuffer; typedef std::weak_ptr TextureWeakPtr; typedef std::shared_ptr TexturePtr; typedef std::shared_ptr FontPtr; typedef std::shared_ptr ImagePtr; typedef std::shared_ptr BorderImagePtr; typedef std::shared_ptr FrameBufferPtr; #endif