2017-07-17 19:42:36 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Discord;
|
2017-05-29 04:13:22 +00:00
|
|
|
|
using Discord.WebSocket;
|
|
|
|
|
|
2017-07-17 19:42:36 +00:00
|
|
|
|
namespace NadekoBot.Common.ModuleBehaviors
|
2017-05-29 04:13:22 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Last thing to be executed, won't stop further executions
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ILateExecutor
|
|
|
|
|
{
|
2017-06-19 13:42:10 +00:00
|
|
|
|
Task LateExecute(DiscordSocketClient client, IGuild guild, IUserMessage msg);
|
2017-05-29 04:13:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|