1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-01-31 17:19:00 +03:00
Octobot/Boyfriend/Commands/Command.cs

18 lines
482 B
C#
Raw Normal View History

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);
}
}