PkmnLibSharp/PkmnLibSharp/Generated/Creaturelib/ChangeStatBoostEvent.cs

36 lines
1.7 KiB
C#

// AUTOMATICALLY GENERATED, DO NOT EDIT
using System;
using System.Runtime.InteropServices;
namespace Creaturelib.Generated
{
internal static class ChangeStatBoostEvent
{
/// <param name="p">const ChangeStatBoostEvent *</param>
/// <returns>const Creature *</returns>
[DllImport("libCreatureLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_ChangeStatBoostEvent_GetCreature")]
internal static extern IntPtr GetCreature(IntPtr p);
/// <param name="p">const ChangeStatBoostEvent *</param>
/// <returns>Statistic</returns>
[DllImport("libCreatureLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_ChangeStatBoostEvent_GetStatistic")]
internal static extern Statistic GetStatistic(IntPtr p);
/// <param name="p">const ChangeStatBoostEvent *</param>
/// <returns>signed char</returns>
[DllImport("libCreatureLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_ChangeStatBoostEvent_GetOldValue")]
internal static extern sbyte GetOldValue(IntPtr p);
/// <param name="p">const ChangeStatBoostEvent *</param>
/// <returns>signed char</returns>
[DllImport("libCreatureLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_ChangeStatBoostEvent_GetNewValue")]
internal static extern sbyte GetNewValue(IntPtr p);
/// <param name="p">const ChangeStatBoostEvent *</param>
/// <returns>void</returns>
[DllImport("libCreatureLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_ChangeStatBoostEvent_Destruct")]
internal static extern void Destruct(IntPtr p);
}
}