PkmnLibSharp/PkmnLibSharp/Generated/Creaturelib/MissEvent.cs

21 lines
749 B
C#
Raw Normal View History

2020-08-25 17:13:15 +00:00
// AUTOMATICALLY GENERATED, DO NOT EDIT
using System;
using System.Runtime.InteropServices;
namespace Creaturelib.Generated
{
internal static class MissEvent
{
/// <param name="p">const MissEvent *</param>
/// <returns>const Creature *</returns>
2020-10-17 16:16:00 +00:00
[DllImport("libCreatureLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_MissEvent_GetCreature")]
2020-08-25 17:13:15 +00:00
internal static extern IntPtr GetCreature(IntPtr p);
/// <param name="p">const MissEvent *</param>
/// <returns>void</returns>
2020-10-17 16:16:00 +00:00
[DllImport("libCreatureLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_MissEvent_Destruct")]
2020-08-25 17:13:15 +00:00
internal static extern void Destruct(IntPtr p);
}
}