Example #1
0
        /// <summary>
        /// SPANISH DICT FORMAT
        /// </summary>
        /// <param name="path"></param>
        public void LoadActionGroups(string filepath)
        {
            TextLoader loader = new TextLoader(filepath);

            while (loader.Peek() != null)
            {
                string          line = loader.Next();
                DocumentSection grp  = DocumentSection.Factory(this, line);

                grp.LoadFrom(loader);

                if (null != grp)
                {
                    DocSections.Add(grp);
                }
            }
        }
 public DefinitionGroup(DocumentSection ag, string title)
 {
     Title  = title;
     Parent = ag;
 }