コード例 #1
0
ファイル: IcebotChannel.cs プロジェクト: icedream/Icebot-old
        public IcebotChannel(IcebotServer server, IcebotChannelConfiguration conf)
        {
            PublicCommands = new IcebotCommandsContainer();
            Configuration = conf;

            Server = server;
        }
コード例 #2
0
ファイル: IcebotServer.cs プロジェクト: icedream/Icebot-old
 internal IcebotServer(Icebot host, IcebotServerConfiguration c)
 {
     Host = host;
     Configuration = c;
     PrivateCommands = new IcebotCommandsContainer();
     RfcDefinitions.Add(new Irc.Rfc2812.Commands());
     Registered = false;
 }