# Conflicts: # Content.Client/Chat/Managers/IChatManager.cs # Content.Client/IoC/ClientContentIoC.cs # Content.Server/Administration/Systems/BwoinkSystem.cs # Content.Server/Chat/Managers/ChatManager.cs # Content.Server/GameTicking/GameTicker.Player.cs # Resources/Audio/Machines/attributions.yml # Resources/Locale/en-US/_strings/administration/commands/custom-vote-command.ftl # Resources/Locale/en-US/_strings/discord/vote-notifications.ftl # Resources/Locale/en-US/_strings/npc/firebot.ftl # Resources/Locale/en-US/_strings/paper/syndicate-business-card.ftl # Resources/Locale/en-US/_strings/store/uplink-catalog.ftl # Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml # Resources/Prototypes/Recipes/Crafting/bots.yml # Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json # Resources/Textures/Structures/Walls/solid.rsi/reinf_over0.png
11 lines
325 B
C#
11 lines
325 B
C#
using Content.Shared.Chat;
|
|
|
|
namespace Content.Client.Chat.Managers
|
|
{
|
|
public interface IChatManager : ISharedChatManager
|
|
{
|
|
event Action PermissionsUpdated; // Sunrise-Edit
|
|
public void UpdatePermissions(); // Sunrise-Edit
|
|
public void SendMessage(string text, ChatSelectChannel channel);
|
|
}
|
|
}
|