Files
crystall-punk-14/Content.Server/Notification/Managers/IServerNotifyManager.cs

11 lines
235 B
C#
Raw Normal View History

2021-06-09 22:19:39 +02:00
using Content.Shared.Notification;
using Content.Shared.Notification.Managers;
2021-06-09 22:19:39 +02:00
namespace Content.Server.Notification.Managers
{
public interface IServerNotifyManager : ISharedNotifyManager
{
void Initialize();
}
}