1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-01-31 09:09:00 +03:00
Octobot/Boyfriend/Commands/Command.cs
l1ttleO 868b6bcaa7
time-out failsafes and new warnings
rewrote setting values in SettingsCommand.cs
fixed a bug with message edited notification on mobile
fixed an exploit with WrapInline where you could escape the code block by simply using `
moved a few things in MuteCommand.cs
cleaned up code
updated library to 3.3.2
2022-02-21 22:08:55 +05:00

18 lines
No EOL
482 B
C#

using Discord;
using Discord.Commands;
namespace Boyfriend.Commands;
public abstract class Command {
public abstract Task Run(SocketCommandContext context, string[] args);
public abstract List<string> GetAliases();
public abstract int GetArgumentsAmountRequired();
public abstract string GetSummary();
protected static async Task Warn(ITextChannel? channel, string warning) {
await Utils.SilentSendAsync(channel, ":warning: " + warning);
}
}