PkmnLibSharp/PkmnLibSharp/Generated/Creatureliblibrary/ExternGrowthRate.cs

23 lines
945 B
C#
Raw Normal View History

2020-05-03 09:38:49 +00:00
// AUTOMATICALLY GENERATED, DO NOT EDIT
2020-05-02 17:54:07 +00:00
using System;
using System.Runtime.InteropServices;
namespace Creatureliblibrary.Generated
{
internal static class ExternGrowthRate
{
2020-07-08 11:50:51 +00:00
/// <param name="out">GrowthRate * &</param>
2020-05-02 17:54:07 +00:00
/// <param name="calcLevel">Function *</param>
/// <param name="calcExperience">Function *</param>
/// <returns>unsigned char</returns>
[DllImport("CreatureLibLibrary", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_ExternGrowthRate_Construct")]
internal static extern byte Construct(ref IntPtr @out, IntPtr calcLevel, IntPtr calcExperience);
2020-05-05 20:40:17 +00:00
/// <param name="p">const ExternGrowthRate *</param>
/// <returns>void</returns>
[DllImport("CreatureLibLibrary", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_ExternGrowthRate_Destruct")]
internal static extern void Destruct(IntPtr p);
2020-05-02 17:54:07 +00:00
}
}