6
StarHorizon_Public/Content.Shared/Chat/ISharedChatManager.cs
2026-01-13 18:31:02 +02: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);
}