2019-04-13 09:45:09 +02:00
|
|
|
using Content.Client.Chat;
|
2019-07-30 23:13:05 +02:00
|
|
|
using Robust.Client;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
2019-04-13 09:45:09 +02:00
|
|
|
|
|
|
|
|
namespace Content.Client.Interfaces.Chat
|
|
|
|
|
{
|
|
|
|
|
public interface IChatManager
|
|
|
|
|
{
|
|
|
|
|
void Initialize();
|
|
|
|
|
|
2019-07-30 23:13:05 +02:00
|
|
|
void FrameUpdate(RenderFrameEventArgs delta);
|
|
|
|
|
|
2019-04-13 09:45:09 +02:00
|
|
|
void SetChatBox(ChatBox chatBox);
|
2019-07-30 23:13:05 +02:00
|
|
|
|
|
|
|
|
void RemoveSpeechBubble(EntityUid entityUid, SpeechBubble bubble);
|
2019-04-13 09:45:09 +02:00
|
|
|
}
|
|
|
|
|
}
|