13 lines
No EOL
224 B
C#
13 lines
No EOL
224 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WingsEmu.Game.Managers;
|
|
|
|
public interface IForbiddenNamesManager
|
|
{
|
|
bool IsBanned(string name, out string s);
|
|
Task Reload();
|
|
} |