14 lines
327 B
C#
Raw Normal View History

2017-07-17 21:42:36 +02:00
using System.Threading.Tasks;
using Discord;
2017-07-17 21:42:36 +02:00
namespace NadekoBot.Common.ModuleBehaviors
{
/// <summary>
/// Implemented by modules which block execution before anything is executed
/// </summary>
public interface IEarlyBlocker
{
2017-05-30 01:53:16 +02:00
Task<bool> TryBlockEarly(IGuild guild, IUserMessage msg);
}
}