Files
OldThink/Content.Server/Interfaces/IServerNotifyManager.cs

10 lines
178 B
C#
Raw Normal View History

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