Initial split of the modules
This commit is contained in:
12
NadekoBot.Core/Common/ModuleBehaviors/ILateBlocker.cs
Normal file
12
NadekoBot.Core/Common/ModuleBehaviors/ILateBlocker.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System.Threading.Tasks;
|
||||
using Discord;
|
||||
using Discord.WebSocket;
|
||||
|
||||
namespace NadekoBot.Common.ModuleBehaviors
|
||||
{
|
||||
public interface ILateBlocker
|
||||
{
|
||||
Task<bool> TryBlockLate(DiscordSocketClient client, IUserMessage msg, IGuild guild,
|
||||
IMessageChannel channel, IUser user, string moduleName, string commandName);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user