forked from SpaceStation14-Shenanigans/Monolith
f91488fa27
* Popup message system v1 * Networking for the popup notifications. Ship it.
10 lines
178 B
C#
10 lines
178 B
C#
using Content.Shared.Interfaces;
|
|
|
|
namespace Content.Server.Interfaces
|
|
{
|
|
public interface IServerNotifyManager : ISharedNotifyManager
|
|
{
|
|
void Initialize();
|
|
}
|
|
}
|