6
StarHorizon_Public/Content.Shared/Chat/ISharedChatManager.cs
2025-08-05 10:00:54 +03:00

9 lines
195 B
C#

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