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

15 lines
356 B
C#

using System.Threading.Tasks;
using Discord;
using Discord.WebSocket;
namespace NadekoBot.Common.ModuleBehaviors
{
/// <summary>
/// Last thing to be executed, won't stop further executions
/// </summary>
public interface ILateExecutor
{
Task LateExecute(DiscordSocketClient client, IGuild guild, IUserMessage msg);
}
}