mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
18 lines
351 B
C++
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 |