Artemis.Engine.Graphics.Animation.AnimationMapReader.ReadElementAttributes C# (CSharp) 메소드

ReadElementAttributes() 개인적인 메소드

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