Files
Leon Friedrich f1f1fc1dc3 Add interaction rate limits (#32527)
* Move PlayerRateLimitManager to shared

* Add interaction rate limits

* uncap tests
2024-09-29 22:19:00 +10:00

10 lines
211 B
C#

using Content.Shared.Chat;
namespace Content.Client.Chat.Managers
{
public interface IChatManager : ISharedChatManager
{
public void SendMessage(string text, ChatSelectChannel channel);
}
}