BotGenerator/Common/BulletHelpers.cs
2022-02-04 00:53:57 +00:00

15 lines
272 B
C#

using System.Linq;
namespace Common;
public static class BulletHelpers
{
private static readonly string[] blackList = {
};
public static bool BulletIsOnBlackList(string bullet)
{
return blackList.Any(x => x.Contains(bullet));
}
}