mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 14:52:35 +02:00
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
27 lines
696 B
C#
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
|
|
}
|
|
}
|