Files
RobustToolbox/Robust.Client/Graphics/DisplayManagerHeadless.cs
T
SilverandGitHub 25926a17b7 Renames SS14.* to Robust.* (#793)
RobustToolbox projects should be named Robust.* 

This PR changes the RobustToolbox projects from SS14.* to Robust.*

Updates SS14.* prefixes/namespaces to Robust.*
Updates SpaceStation14.sln to RobustToolbox.sln
Updates MSBUILD/SS14.* to MSBUILD/Robust.*
Updates CSProject and MSBuild references for the above
Updates git_helper.py
Removes Runserver and Runclient as they are unusable
2019-04-15 20:24:59 -06:00

27 lines
696 B
C#

using System;
using Robust.Client.Interfaces.Graphics;
using Robust.Shared.Maths;
namespace Robust.Client.Graphics
{
internal class DisplayManagerHeadless : DisplayManager
{
// Would it make sense to report a fake resolution like 720p here so code doesn't break? idk.
public override Vector2i ScreenSize => Vector2i.Zero;
public override void SetWindowTitle(string title)
{
// Nada.
}
public override void Initialize()
{
// Nada.
}
#pragma warning disable CS0067
public override event Action<WindowResizedEventArgs> OnWindowResized;
#pragma warning restore CS0067
}
}