1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/graphics/rendertarget.hpp
2024-04-02 09:32:06 -03:00

16 lines
226 B
C++

#ifndef XNA_GRAPHICS_RENDERTARGET_HPP
#define XNA_GRAPHICS_RENDERTARGET_HPP
#include "texture.hpp"
namespace xna {
class IRenderTarget2D {
public:
virtual ~IRenderTarget2D(){}
virtual bool Apply() = 0;
};
}
#endif