/// <summary>
 /// Initializes a new instance of the TmxElement class.
 /// </summary>
 /// <param name="name">The name of this element.</param>
 public TmxElement(string name)
 {
     this.nodes = new TmxNodeCollection(this);
     this.attributes = new TmxAttributeCollection(this);
     this.name = name;
     this.isTerminated = false;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the TmxElement class.
 /// </summary>
 /// <param name="name">The name of this element.</param>
 public TmxElement(string name)
 {
     this.nodes        = new TmxNodeCollection(this);
     this.attributes   = new TmxAttributeCollection(this);
     this.name         = name;
     this.isTerminated = false;
 }