mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
16 lines
405 B
C#
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; }
|
|
}
|
|
}
|