Delta-v/Content.Shared/Chat/ISharedChatManager.cs

9 lines
195 B
C#

namespace Content.Shared.Chat;
public interface ISharedChatManager
{
void Initialize();
void SendAdminAlert(string message);
void SendAdminAlert(EntityUid player, string message);
}