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; }
|
|
}
|
|
}
|