10 lines
191 B
C#
10 lines
191 B
C#
using Content.Shared.Notification;
|
|
|
|
namespace Content.Server.Notification.Managers
|
|
{
|
|
public interface IServerNotifyManager : ISharedNotifyManager
|
|
{
|
|
void Initialize();
|
|
}
|
|
}
|