14 lines
327 B
C#
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);
|
|
}
|
|
}
|