1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/graphics/swapchain.hpp

15 lines
264 B
C++

#ifndef XNA_GRAPHICS_SWAPCHAIN_HPP
#define XNA_GRAPHICS_SWAPCHAIN_HPP
#include "../default.hpp"
#include "../game/window.hpp"
namespace xna {
class ISwapChain {
public:
virtual ~ISwapChain() {}
virtual bool Initialize(xna_error_nullarg) = 0;
};
}
#endif