NadekoBot/NadekoBot.Core/Common/ModuleBehaviors/IEarlyBlocker.cs
2017-09-30 00:46:33 +02:00

14 lines
327 B
C#

using System.Threading.Tasks;
using Discord;
namespace NadekoBot.Common.ModuleBehaviors
{
/// <summary>
/// Implemented by modules which block execution before anything is executed
/// </summary>
public interface IEarlyBlocker
{
Task<bool> TryBlockEarly(IGuild guild, IUserMessage msg);
}
}