Files
nadekobot/src/NadekoBot/Common/ModuleBehaviors/IEarlyBehavior.cs
2021-12-29 06:07:16 +01:00

10 lines
276 B
C#

namespace NadekoBot.Common.ModuleBehaviors;
/// <summary>
/// Implemented by modules which block execution before anything is executed
/// </summary>
public interface IEarlyBehavior
{
int Priority { get; }
Task<bool> RunBehavior(IGuild guild, IUserMessage msg);
}