NadekoBot/NadekoBot/Modules/DiscordModule.cs

14 lines
379 B
C#
Raw Normal View History

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