| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // WARNING - AUTOGENERATED - DO NOT EDIT
- //
- // Generated using `sharpie urho`
- //
- // RefCount.cs
- //
- // Copyright 2015 Xamarin Inc. All rights reserved.
- using System;
- using System.Runtime.InteropServices;
- using System.Collections.Generic;
- using Urho.Urho2D;
- using Urho.Gui;
- using Urho.Resources;
- using Urho.IO;
- using Urho.Navigation;
- using Urho.Network;
- namespace Urho
- {
- /// <summary>
- /// Reference count structure.
- /// </summary>
- [StructLayout (LayoutKind.Sequential)]
- public unsafe partial struct RefCount
- {
- unsafe partial void OnRefCountCreated ();
- [DllImport (Consts.NativeImport, CallingConvention = CallingConvention.Cdecl)]
- internal static extern IntPtr RefCount_RefCount ();
- [Preserve]
- public RefCount ()
- {
- Runtime.Validate (typeof(RefCount));
- }
- }
- }
|