XmlElement.cs 213 B

1234567891011121314151617
  1. using System;
  2. namespace Urho.Resources
  3. {
  4. partial class XmlElement
  5. {
  6. IntPtr handle;
  7. public IntPtr Handle => handle;
  8. [Preserve]
  9. public XmlElement(IntPtr handle)
  10. {
  11. this.handle = handle;
  12. }
  13. }
  14. }