6
2026-01-13 18:31:02 +02:00

16 lines
395 B
C#

using Content.Client.UserInterface.Controls;
namespace Content.Client.Viewport
{
/// <summary>
/// Client state that has a main viewport.
/// </summary>
/// <remarks>
/// Used for taking no-UI screenshots (including things like flash overlay).
/// </remarks>
public interface IMainViewportState
{
public MainViewport Viewport { get; }
}
}