server-master/srcs/LoginServer/Utils/ISpamProtector.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
172 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace LoginServer.Utils
{
public interface ISpamProtector
{
bool CanConnect(string ipAddress);
}
}