Esempio n. 1
0
File: DrlBase.cs Progetto: 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
        }
Esempio n. 2
0
File: DrlBase.cs Progetto: Kryod/drl
 private static extern void _Run(IntPtr handle, NativePlugins.Types.Algorithm alg);