Files
tbd-station-14/Content.Client/State/IMainViewport.cs
2021-04-19 09:52:40 +02:00

16 lines
383 B
C#

using Content.Client.UserInterface;
namespace Content.Client.State
{
/// <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; }
}
}