Files
NadekoBot/NadekoBot/Modules/DiscordModule.cs
Master Kwoth a909d69e4a Initial commit
Enjoy
2015-12-05 12:03:11 +01:00

21 lines
436 B
C#

using Discord.Modules;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NadekoBot.Modules
{
abstract class DiscordModule : IModule
{
public List<DiscordCommand> commands;
protected DiscordModule() {
commands = new List<DiscordCommand>();
}
public abstract void Install(ModuleManager manager);
}
}