#ifndef XNA_FORWARD_HPP #define XNA_FORWARD_HPP #include "types.hpp" namespace xna { //Framework class BoundingBox; using PBoundingBox = std::shared_ptr; class BoundingFrustum; using PBoundingFrustum = std::shared_ptr; class BoundinSphere; using PBoundinSphere = std::shared_ptr; struct Color; using PColor = std::shared_ptr; class Curve; using PCurve = std::shared_ptr; class CurveContinuity; using PCurveContinuity = std::shared_ptr; class CurveKey; using PCurveKey = std::shared_ptr; class CurveKeyCollection; using PCurveKeyCollection = std::shared_ptr; struct Matrix; using PMatrix = std::shared_ptr; class Plane; using PPlane = std::shared_ptr; struct Point; using PPoint = std::shared_ptr; class Quaternion; using PQuaternion = std::shared_ptr; class Ray; using PRay = std::shared_ptr; struct Rectangle; using PRectangle = std::shared_ptr; struct Vector2; using PVector2 = std::shared_ptr; struct Vector3; using PVector3 = std::shared_ptr; struct Vector4; using PVector4 = std::shared_ptr; //Game class DrawableGameComponent; using PDrawableGameComponent = std::shared_ptr; class Game; using PGame = std::shared_ptr; class GameComponent; using PGameComponent = std::shared_ptr; class GameComponentCollection; using PGameComponentCollection = std::shared_ptr; class GameClock; using PGameClock = std::shared_ptr; class GameTime; using PGameTime = std::shared_ptr; class GameWindow; using PGameWindow = std::shared_ptr; class IDrawable; using PIDrawable = std::shared_ptr; class IGameComponent; using PIGameComponent = std::shared_ptr; class IUpdatable; using PIUpdatable = std::shared_ptr; //Graphics class BlendState; using PBlendState = std::shared_ptr; class DisplayMode; using PDisplayMode = std::shared_ptr; class DisplayModeCollection; using PDisplayModeCollection = std::shared_ptr; class GraphicsAdapter; using PGraphicsAdapter = std::shared_ptr; class GraphicsDevice; using PGraphicsDevice = std::shared_ptr; class RenderTarget2D; using PRenderTarget2D = std::shared_ptr; class SwapChain; using PSwapChain = std::shared_ptr; class Texture; using PTexture = std::shared_ptr; class Texture2D; using PTexture2D = std::shared_ptr; struct Viewport; using PViewport = std::shared_ptr; } #endif