namespace Robust.Client.Graphics
{
///
/// A render target that renders into a texture that can be re-used later.
///
public interface IRenderTexture : IRenderTarget
{
///
/// A texture that contains the contents of the render target.
///
Texture Texture { get; }
}
}