Allow crew manifest window resizing (#12825)

This commit is contained in:
Leon Friedrich
2022-12-07 12:46:19 +13:00
committed by GitHub
parent ff9cf108b6
commit 7f234d4e3b
2 changed files with 1 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
using Content.Client.Eui;
using Content.Client.GameTicking.Managers;
using Content.Shared.CrewManifest;
using Content.Shared.Eui;
using JetBrains.Annotations;
@@ -9,12 +8,10 @@ namespace Content.Client.CrewManifest;
[UsedImplicitly]
public sealed class CrewManifestEui : BaseEui
{
private readonly ClientGameTicker _gameTicker;
private readonly CrewManifestUi _window;
public CrewManifestEui()
{
_gameTicker = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<ClientGameTicker>();
_window = new();
_window.OnClose += () =>