PkmnLibSharp/PkmnLibSharp/Generated/Creaturelibbattling/FleeTurnChoice.cs

15 lines
451 B
C#

using System;
using System.Runtime.InteropServices;
namespace Creaturelibbattling.Generated
{
internal static class FleeTurnChoice
{
/// <param name="user">Creature *</param>
/// <returns>FleeTurnChoice *</returns>
[DllImport("CreatureLibBattling", CallingConvention = CallingConvention.Cdecl, EntryPoint= "CreatureLib_FleeTurnChoice_Construct")]
internal static extern IntPtr Construct(IntPtr user);
}
}