Files
RobustToolbox/Robust.Client/Graphics/ScreenshotType.cs
Vera Aguilera Puerto c4946b8466 Viewport Improvements (#1528)
Co-authored-by: 20kdc <asdd2808@gmail.com>
Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
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
}
}