18 lines
400 B
C#
18 lines
400 B
C#
using Content.Shared.Chat;
|
|
|
|
namespace Content.Client.Chat.Managers
|
|
{
|
|
public interface IChatManager
|
|
{
|
|
void Initialize();
|
|
|
|
public void SendMessage(string text, ChatSelectChannel channel);
|
|
|
|
/// <summary>
|
|
/// Nyano - Summary:. Will refresh perms.
|
|
/// </summary>
|
|
event Action PermissionsUpdated;
|
|
public void UpdatePermissions();
|
|
}
|
|
}
|