15 lines
356 B
C#
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);
|
|
}
|
|
}
|