Files
crystall-punk-14/Content.Client/Viewport/IMainViewport.cs

16 lines
379 B
C#
Raw Normal View History

2021-06-09 22:19:39 +02:00
using Content.Client.HUD.UI;
2021-04-19 09:52:40 +02:00
2021-06-09 22:19:39 +02:00
namespace Content.Client.Viewport
2021-04-19 09:52:40 +02:00
{
/// <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; }
}
}