mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-16 21:17:39 +03:00
# Description Port ready manifest to pre-round lobby from [Imp Station](https://github.com/impstation/imp-station-14) Prs: https://github.com/impstation/imp-station-14/pull/43 https://github.com/impstation/imp-station-14/pull/63 --- <details><summary><h1>Media</h1></summary> <p>   </p> </details> --- # Changelog 🆑 12rabbits and Will-Oliver-Br add: Added a ready manifest display to the pre-round lobby. --------- Co-authored-by: 12rabbits <53499656+12rabbits@users.noreply.github.com> (cherry picked from commit 6f69f5a80188e73980b24d5f8a127146a98965d1)
21 lines
441 B
C#
21 lines
441 B
C#
using Content.Shared.ReadyManifest;
|
|
|
|
namespace Content.Client.ReadyManifest;
|
|
|
|
public sealed class ReadyManifestSystem : EntitySystem
|
|
{
|
|
private HashSet<string> _departments = new();
|
|
|
|
public IReadOnlySet<string> Departments => _departments;
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
}
|
|
|
|
public void RequestReadyManifest()
|
|
{
|
|
RaiseNetworkEvent(new RequestReadyManifestMessage());
|
|
}
|
|
}
|