Files
tbd-station-14/Content.Client/Interfaces/Chat/IChatManager.cs
Pieter-Jan Briers 0086e60b6a Speech bubbles yo.
2019-07-30 23:13:05 +02:00

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);
}
}