9 lines
195 B
C#
9 lines
195 B
C#
namespace Content.Shared.Chat;
|
|
|
|
public interface ISharedChatManager
|
|
{
|
|
void Initialize();
|
|
void SendAdminAlert(string message);
|
|
void SendAdminAlert(EntityUid player, string message);
|
|
}
|