The easy to use and full featured Irc Bot everyone is talking about!
您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace Combot.Modules
|
|
|
|
{
|
|
|
|
abstract internal class Module
|
|
|
|
{
|
|
|
|
abstract public List<Command> Commands { get; set; }
|
|
|
|
|
|
|
|
abstract internal void Initialize() { }
|
|
|
|
}
|
|
|
|
}
|