18 lines
374 B
C#
18 lines
374 B
C#
using Content.Client.Chat;
|
|
using Robust.Client;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.Interfaces.Chat
|
|
{
|
|
public interface IChatManager
|
|
{
|
|
void Initialize();
|
|
|
|
void FrameUpdate(RenderFrameEventArgs delta);
|
|
|
|
void SetChatBox(ChatBox chatBox);
|
|
|
|
void RemoveSpeechBubble(EntityUid entityUid, SpeechBubble bubble);
|
|
}
|
|
}
|