Files
RobustToolbox/Robust.Client/Graphics/IRenderTexture.cs

17 lines
435 B
C#

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