NadekoBot/NadekoBot.Core/Common/ModuleBehaviors/ILateExecutor.cs

15 lines
356 B
C#
Raw Normal View History

2017-07-17 19:42:36 +00:00
using System.Threading.Tasks;
using Discord;
using Discord.WebSocket;
2017-07-17 19:42:36 +00:00
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);
}
}