RefCount.cs 787 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // WARNING - AUTOGENERATED - DO NOT EDIT
  2. //
  3. // Generated using `sharpie urho`
  4. //
  5. // RefCount.cs
  6. //
  7. // Copyright 2015 Xamarin Inc. All rights reserved.
  8. using System;
  9. using System.Runtime.InteropServices;
  10. using System.Collections.Generic;
  11. using Urho.Urho2D;
  12. using Urho.Gui;
  13. using Urho.Resources;
  14. using Urho.IO;
  15. using Urho.Navigation;
  16. using Urho.Network;
  17. namespace Urho
  18. {
  19. /// <summary>
  20. /// Reference count structure.
  21. /// </summary>
  22. [StructLayout (LayoutKind.Sequential)]
  23. public unsafe partial struct RefCount
  24. {
  25. unsafe partial void OnRefCountCreated ();
  26. [DllImport (Consts.NativeImport, CallingConvention = CallingConvention.Cdecl)]
  27. internal static extern IntPtr RefCount_RefCount ();
  28. [Preserve]
  29. public RefCount ()
  30. {
  31. Runtime.Validate (typeof(RefCount));
  32. }
  33. }
  34. }