예제 #1
0
파일: DrlBase.cs 프로젝트: Kryod/drl
        public void Run(NativePlugins.Types.Algorithm alg)
        {
            this.CheckHandle();
#if !UNITY_EDITOR
            _Run(this.Handle, alg);
#else
            NativePluginLoader.GetDelegate <DllRun>(this.DllHandle, "run")(this.Handle, alg);
#endif
        }
예제 #2
0
파일: DrlBase.cs 프로젝트: Kryod/drl
 private static extern void _Run(IntPtr handle, NativePlugins.Types.Algorithm alg);