Files
Nuake/NuakeNet/Source/Generated/ExampleModule.cs
2025-04-03 23:06:54 -04:00

22 lines
449 B
C#

using System;
namespace Nuake
{
public static class ExampleModule
{
public static void ExampleFunction()
{
unsafe
{
Internals.ExampleModuleExampleFunctionICall();
}
}
public static void ExampleModuleLog(string hi)
{
unsafe
{
Internals.ExampleModuleExampleModuleLogICall(hi);
}
}
}
}