6
StarHorizon_Public/Content.Shared/Chat/ISharedChatManager.cs
2025-12-18 02:55:17 +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);
}