implemented functions from NativeFunctions.cs

This commit is contained in:
2025-07-05 03:22:48 +03:00
parent f7a8d32865
commit 175fe61e5c
7 changed files with 53 additions and 14 deletions

View File

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