| 12345678910111213141516 |
- using System;
- using System.Runtime.InteropServices;
- namespace Urho
- {
- public partial class Graphics
- {
- [DllImport(Consts.NativeImport, CallingConvention = CallingConvention.Cdecl)]
- static extern IntPtr Graphics_GetSdlWindow(IntPtr graphics);
- /// <summary>
- /// Pointer to SDL window
- /// </summary>
- public IntPtr SdlWindow => Graphics_GetSdlWindow(Handle);
- }
- }
|