mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Co-authored-by: 20kdc <asdd2808@gmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
14 lines
339 B
C#
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
|
|
}
|
|
}
|