Popup message notifications. (#125)

* Popup message system v1

* Networking for the popup notifications.

Ship it.
This commit is contained in:
Pieter-Jan Briers
2018-11-21 21:11:30 +01:00
committed by GitHub
parent b0f212bad5
commit f91488fa27
13 changed files with 324 additions and 1 deletions

View File

@@ -34,7 +34,9 @@ using Content.Server.GameObjects.EntitySystems;
using Content.Server.Mobs;
using Content.Server.Players;
using Content.Server.GameObjects.Components.Interactable;
using Content.Server.Interfaces;
using Content.Shared.GameObjects.Components.Inventory;
using Content.Shared.Interfaces;
namespace Content.Server
{
@@ -125,6 +127,12 @@ namespace Content.Server
factory.RegisterIgnore("ConstructionGhost");
factory.Register<MindComponent>();
IoCManager.Register<ISharedNotifyManager, ServerNotifyManager>();
IoCManager.Register<IServerNotifyManager, ServerNotifyManager>();
IoCManager.BuildGraph();
IoCManager.Resolve<IServerNotifyManager>().Initialize();
}
/// <inheritdoc />