Esempio n. 1
0
        public Overseer()
        {
            this.Senses              = new Senses(this);
            this.Speaking            = new Speaking(this);
            this.MessageProcessor    = new Core.MessageProcessor(this);
            this.Persons             = new Core.Persons(this);
            this.Settings            = new MessengerSettings.MessengerSettings(this);
            this.Home                = new HomeEndpoint(this);
            this.Facebook            = new FacebookEndpoint(this);
            this.Telegram            = new TelegramEndpoint(this);
            this.DialogueLoader      = new DialogueLoader();
            this.FreeformPhrases     = new Freeform.FreeformPhrases(this);
            this.LoadedConversations = new LoadedConversations(this);
            Riddle.Load();
            Joke.Load();

            FacebookMetaCommunicator mc = new FacebookMetaCommunicator(this);

            mc.StartLoop();
            TelegramCommunicator tg = new TelegramCommunicator(this);

            tg.StartLoop();
        }
Esempio n. 2
0
 public FbpostController() : base()
 {
     this.fblink = new FacebookEndpoint();
 }