Added basics for automatic C# -> C++ Bindings

This commit is contained in:
antopilo
2025-04-04 00:17:07 -04:00
parent 2908429b68
commit 00367c37c9
10 changed files with 95 additions and 43 deletions

View File

@@ -1,21 +1,5 @@
using System;
namespace Nuake
namespace Nuake.Net
{
public static class ExampleModule
{
public static void ExampleFunction()
{
unsafe
{
Internals.ExampleModuleExampleFunctionICall();
}
}
public static void ExampleModuleLog(string hi)
{
unsafe
{
Internals.ExampleModuleExampleModuleLogICall(hi);
}
}
}
}