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