mirror of
https://github.com/antopilo/Nuake.git
synced 2026-01-02 09:48:32 +03:00
22 lines
452 B
C#
22 lines
452 B
C#
using System;
|
|
namespace Nuake.Net
|
|
{
|
|
public class ExampleModule
|
|
{
|
|
public static void ExampleFunction()
|
|
{
|
|
unsafe
|
|
{
|
|
Internals.ExampleModuleExampleFunctionICall();
|
|
}
|
|
}
|
|
public static void ExampleModuleLog16(string hi2)
|
|
{
|
|
unsafe
|
|
{
|
|
Internals.ExampleModuleExampleModuleLog16ICall(hi2);
|
|
}
|
|
}
|
|
}
|
|
}
|