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); }