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

18 lines
351 B
C++

#ifndef XNA_GRAPHICS_SWAPCHAIN_HPP
#define XNA_GRAPHICS_SWAPCHAIN_HPP
#include "../types.hpp"
#include "../enums.hpp"
#include "../forward.hpp"
#include "../game/window.hpp"
namespace xna {
class ISwapChain {
public:
virtual ~ISwapChain() {}
virtual bool Initialize(GameWindow const& gameWindow) = 0;
virtual bool Apply() = 0;
};
}
#endif