Files
tbd-station-14/Content.Server/Interfaces/IServerNotifyManager.cs
Pieter-Jan Briers f91488fa27 Popup message notifications. (#125)
* Popup message system v1

* Networking for the popup notifications.

Ship it.
2018-11-21 21:11:30 +01:00

10 lines
178 B
C#

using Content.Shared.Interfaces;
namespace Content.Server.Interfaces
{
public interface IServerNotifyManager : ISharedNotifyManager
{
void Initialize();
}
}