mirror of
https://github.com/antopilo/Nuake.git
synced 2026-01-03 14:09:46 +03:00
22 lines
449 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
}
|