Added demo for cpp module and updated the CppModule
This commit is contained in:
9
Plugins/CppModuleDemo/Delegates.cs
Normal file
9
Plugins/CppModuleDemo/Delegates.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace CppModuleDemo;
|
||||
|
||||
public static class Delegates
|
||||
{
|
||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
||||
public delegate void ModifyComplexObject(ref ExampleComplexObject obj);
|
||||
}
|
||||
Reference in New Issue
Block a user