ISharedChatManager.cs 195 B

12345678
  1. namespace Content.Shared.Chat;
  2. public interface ISharedChatManager
  3. {
  4. void Initialize();
  5. void SendAdminAlert(string message);
  6. void SendAdminAlert(EntityUid player, string message);
  7. }