Artemis.Engine.Graphics.Animation.AnimationMapReader.ReadElementAttributes C# (CSharp) Method

ReadElementAttributes() private method

private ReadElementAttributes ( XmlElement element ) : void
element System.Xml.XmlElement
return void
        private void ReadElementAttributes(XmlElement element)
        {
            foreach (XmlAttribute attrib in element.Attributes)
            {
                if (attrib.Name == INIT_STATE)
                    InitState = attrib.Value;
            }
        }