using System; using System.Runtime.InteropServices; namespace Creaturelibbattling.Generated { internal static class CreatureParty { /// long unsigned int /// CreatureParty * [DllImport("CreatureLibBattling", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_CreatureParty_ConstructWithSize")] internal static extern IntPtr ConstructWithSize(ulong size); /// Creature * * /// long unsigned int /// CreatureParty * [DllImport("CreatureLibBattling", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_CreatureParty_ConstructFromArray")] internal static extern IntPtr ConstructFromArray(IntPtr creatures, ulong size); /// const CreatureParty * /// void [DllImport("CreatureLibBattling", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_CreatureParty_Destruct")] internal static extern void Destruct(IntPtr p); /// Creature *& /// const CreatureParty * /// long unsigned int /// unsigned char [DllImport("CreatureLibBattling", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_CreatureParty_GetAtIndex")] internal static extern byte GetAtIndex(ref IntPtr @out, IntPtr p, ulong index); /// CreatureParty * /// long unsigned int /// long unsigned int /// unsigned char [DllImport("CreatureLibBattling", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_CreatureParty_Switch")] internal static extern byte Switch(IntPtr p, ulong a, ulong b); /// const CreatureParty * /// bool [DllImport("CreatureLibBattling", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_CreatureParty_HasAvailableCreatures")] internal static extern bool HasAvailableCreatures(IntPtr p); /// const CreatureParty * /// long unsigned int [DllImport("CreatureLibBattling", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_CreatureParty_GetLength")] internal static extern ulong GetLength(IntPtr p); /// CreatureParty * /// const Creature * * [DllImport("CreatureLibBattling", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_CreatureParty_GetParty")] internal static extern IntPtr GetParty(IntPtr p); } }