Files
crystall-punk-14/Content.Client/Interfaces/Chat/IChatManager.cs

18 lines
375 B
C#
Raw Normal View History

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