Files
tbd-station-14/Content.Shared/Chat/ISharedChatManager.cs
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

9 lines
195 B
C#

namespace Content.Shared.Chat;
public interface ISharedChatManager
{
void Initialize();
void SendAdminAlert(string message);
void SendAdminAlert(EntityUid player, string message);
}