Files
RobustToolbox/Robust.Client/Graphics/ScreenshotType.cs
T
2021-04-19 09:47:20 +02:00

14 lines
339 B
C#

namespace Robust.Client.Graphics
{
/// <summary>
/// Types of screenshots to take, at various stages of the render pipeline.
/// </summary>
public enum ScreenshotType : byte
{
/// <summary>
/// Final framebuffer that will be presented to the window.
/// </summary>
Final
}
}