mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 22:49:01 +03:00
11 lines
235 B
C#
11 lines
235 B
C#
using Content.Shared.Notification;
|
|
using Content.Shared.Notification.Managers;
|
|
|
|
namespace Content.Server.Notification.Managers
|
|
{
|
|
public interface IServerNotifyManager : ISharedNotifyManager
|
|
{
|
|
void Initialize();
|
|
}
|
|
}
|