NadekoBot/NadekoBot/Modules/DiscordModule.cs
2016-04-15 00:17:29 +02:00

14 lines
381 B
C#

using Discord.Modules;
using System.Collections.Generic;
using NadekoBot.Classes;
namespace NadekoBot.Modules {
internal abstract class DiscordModule : IModule {
protected readonly HashSet<DiscordCommand> commands = new HashSet<DiscordCommand>();
public abstract string Prefix { get; }
public abstract void Install(ModuleManager manager);
}
}