프로젝트

일반

사용자정보

통계
| 개정판:

t1 / TFDContents / Assets / Standard Assets / INativeWrapper.cs @ 10

이력 | 보기 | 이력해설 | 다운로드 (275 Bytes)

1
#if !(UNITY_WSA_10_0 && NETFX_CORE)
2
using System;
3
using System.Collections.Generic;
4
using System.Runtime.InteropServices;
5
using System.Linq;
6

    
7
namespace Helper
8
{
9
    internal interface INativeWrapper
10
    {
11
        System.IntPtr nativePtr { get; }
12
    }
13
}
14
#endif