12 lines
341 B
C#
12 lines
341 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ougge;
|
|
|
|
internal static class NativeFunctions
|
|
{
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
internal extern static void createGameObject(out ulong id, out uint index);
|
|
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
internal extern static bool freeGameObject(uint index);
|
|
} |