Delta-v/Content.Server/Notification/Managers/IServerNotifyManager.cs

10 lines
191 B
C#

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