Now bindings between coral and and generatedC# correctly working

This commit is contained in:
antopilo
2025-04-04 17:11:48 -04:00
parent 1668363c4e
commit bff8ca2be1
7 changed files with 61 additions and 46 deletions

View File

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