XmlElement.cs 165 B

1234567891011121314
  1. using System;
  2. namespace Urho.Resources
  3. {
  4. partial class XmlElement
  5. {
  6. IntPtr handle;
  7. public XmlElement(IntPtr handle)
  8. {
  9. this.handle = handle;
  10. }
  11. }
  12. }