ougge/src-csharp/NativeMethods.cs
2025-04-18 18:24:02 +05:00

13 lines
318 B
C#

using System;
using System.Runtime.InteropServices;
namespace Ougge;
internal static class NativeMethods
{
[DllImport("__Internal")]
internal extern static bool destroyGameObject(uint index);
[DllImport("__Internal")]
internal extern static void createGameObject(out ulong id, out uint index);
}