using System; using System.Runtime.InteropServices; namespace PkmnLibSharp.FFI.DynamicData.Libraries { internal static class MiscLibrary { /// /// Instantiates a new MiscLibrary. /// [DllImport(Data.DllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)] internal static extern IdentifiablePointer gen_7_misc_library_new(); /// /// Drops a MiscLibrary. /// [DllImport(Data.DllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)] internal static extern void misc_library_drop(IntPtr ptr); } }