soundvision/UnityProject/Assets/ThridParty/KinectScript/INativeWrapper.cs

12 lines
217 B
C#
Raw Normal View History

2019-06-30 12:46:10 +00:00
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Linq;
namespace Helper
{
internal interface INativeWrapper
{
System.IntPtr nativePtr { get; }
}
}