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