IMainViewport.cs 395 B

123456789101112131415
  1. using Content.Client.UserInterface.Controls;
  2. namespace Content.Client.Viewport
  3. {
  4. /// <summary>
  5. /// Client state that has a main viewport.
  6. /// </summary>
  7. /// <remarks>
  8. /// Used for taking no-UI screenshots (including things like flash overlay).
  9. /// </remarks>
  10. public interface IMainViewportState
  11. {
  12. public MainViewport Viewport { get; }
  13. }
  14. }