something something

This commit is contained in:
2026-01-09 11:57:24 +05:00
parent 175fe61e5c
commit 346779060e
5 changed files with 34 additions and 13 deletions

View File

@@ -1,13 +1,12 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
namespace Ougge;
internal static class NativeFunctions
{
[DllImport("__Internal")]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern static void createGameObject(out ulong id, out uint index);
[DllImport("__Internal")]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern static bool freeGameObject(uint index);
}