Example #1
0
        /// <summary>
        /// Loads AIML from .aiml files into the graphmaster "brain" of the bot
        /// </summary>
        public void loadAIMLFromFiles()
        {
            AIMLLoader loader = new AIMLLoader(this);

            loader.loadAIML();
        }
Example #2
0
        /// <summary>
        /// Loads AIML from .aiml files into the graphmaster "brain" of the bot
        /// </summary>
        //public void loadAIMLFromFiles()
        //{
        //    AIMLLoader loader = new AIMLLoader(this);
        //    loader.loadAIML();
        //}
        /// <summary>
        /// Loads AIML from .aiml files into the graphmaster "brain" of the bot
        /// </summary>
        public void loadAIMLFromFiles(string aimldir)
        {
            AIMLLoader loader = new AIMLLoader(this);

            loader.loadAIML(aimldir);
        }