#ifndef XNA_GAME_GDEVICEINFO_HPP #define XNA_GAME_GDEVICEINFO_HPP #include "../default.hpp" namespace xna { class GraphicsDeviceInformation { public: sptr Adapter = nullptr; xna::GraphicsProfile Profile{ xna::GraphicsProfile::Reach }; sptr Parameters = nullptr; sptr Window = nullptr; }; } #endif