mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
16 lines
225 B
C++
16 lines
225 B
C++
#ifndef XNA_GRAPHICS_RENDERTARGET_HPP
|
|
#define XNA_GRAPHICS_RENDERTARGET_HPP
|
|
|
|
#include "texture.hpp"
|
|
|
|
|
|
namespace xna {
|
|
class IRenderTarget2D {
|
|
public:
|
|
virtual ~IRenderTarget2D(){}
|
|
|
|
virtual bool Bind() = 0;
|
|
};
|
|
}
|
|
|
|
#endif |