2019-04-15 21:11:38 -06:00
|
|
|
using Robust.Server.Interfaces.Player;
|
|
|
|
|
using Robust.Shared.Interfaces.GameObjects;
|
2019-04-13 09:45:09 +02:00
|
|
|
|
|
|
|
|
namespace Content.Server.Interfaces.Chat
|
|
|
|
|
{
|
|
|
|
|
public interface IChatManager
|
|
|
|
|
{
|
|
|
|
|
void Initialize();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Dispatch a server announcement to every connected player.
|
|
|
|
|
/// </summary>
|
|
|
|
|
void DispatchServerAnnouncement(string message);
|
|
|
|
|
|
|
|
|
|
void DispatchServerMessage(IPlayerSession player, string message);
|
|
|
|
|
|
|
|
|
|
void EntitySay(IEntity source, string message);
|
2019-10-30 21:49:07 +01:00
|
|
|
void EntityMe(IEntity source, string action);
|
2019-04-13 09:45:09 +02:00
|
|
|
|
|
|
|
|
void SendOOC(IPlayerSession player, string message);
|
2020-03-30 01:15:43 +02:00
|
|
|
void SendDeadChat(IPlayerSession player, string message);
|
2019-04-17 23:31:43 +02:00
|
|
|
|
|
|
|
|
void SendHookOOC(string sender, string message);
|
2019-04-13 09:45:09 +02:00
|
|
|
}
|
|
|
|
|
}
|