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