Files
tbd-station-14/Content.Client/Interfaces/Chat/IChatManager.cs
Pieter-Jan Briers 52af7d27da Re-implement chat in content. (#198)
* OOC is a word.

* Re-implement chat in content.
2019-04-13 09:45:09 +02:00

12 lines
189 B
C#

using Content.Client.Chat;
namespace Content.Client.Interfaces.Chat
{
public interface IChatManager
{
void Initialize();
void SetChatBox(ChatBox chatBox);
}
}