Files
RobustToolbox/Robust.Client/Graphics/IRenderTexture.cs
2023-09-11 19:17:28 +10:00

16 lines
405 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>
public interface IRenderTexture : IRenderTarget
{
/// <summary>
/// A texture that contains the contents of the render target.
/// </summary>
Texture Texture { get; }
}
}