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

17 lines
296 B
C++

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