mirror of
https://github.com/antopilo/Nuake.git
synced 2026-01-03 14:09:46 +03:00
Now bindings between coral and and generatedC# correctly working
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user