mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
11 lines
291 B
C#
11 lines
291 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Content.Server.Chat.Managers;
|
|
|
|
public interface IChatSanitizationManager
|
|
{
|
|
public void Initialize();
|
|
|
|
public bool TrySanitizeOutSmilies(string input, EntityUid speaker, out string sanitized, [NotNullWhen(true)] out string? emote);
|
|
}
|