Beispiel #1
0
        /// <summary>
        /// Creates an animation entry reading info from the xml node
        /// </summary>
        /// <param name="xmlNode">The input xml node</param>
        /// <returns>Animation entry</returns>
        private Animation createAndLoadAnimationEntry(XmlNode xmlNode)
        {
            var animation = new Animation();

            animation.Load(xmlNode);

            return(animation);
        }
Beispiel #2
0
        /// <summary>
        /// Creates an animation entry reading info from the xml node
        /// </summary>
        /// <param name="xmlNode">The input xml node</param>
        /// <returns>Animation entry</returns>
        private Animation createAndLoadAnimationEntry(XmlNode xmlNode)
        {
            var animation = new Animation();

            animation.Load(xmlNode);

            return animation;
        }