NadekoBot/NadekoBot/Modules/DiscordModule.cs

14 lines
381 B
C#
Raw Normal View History

2015-12-05 11:27:00 +01:00
using Discord.Modules;
using System.Collections.Generic;
2016-04-15 00:17:29 +02:00
using NadekoBot.Classes;
2015-12-05 11:27:00 +01:00
2016-03-01 12:44:30 +01:00
namespace NadekoBot.Modules {
internal abstract class DiscordModule : IModule {
protected readonly HashSet<DiscordCommand> commands = new HashSet<DiscordCommand>();
2015-12-05 11:27:00 +01:00
2016-03-04 13:08:06 +01:00
public abstract string Prefix { get; }
2015-12-05 11:27:00 +01:00
public abstract void Install(ModuleManager manager);
}
}