Initial commit, implements Forme
This commit is contained in:
18
PkmnLibSharp/Generated/Pkmnlib/StatCalculator.cs
Normal file
18
PkmnLibSharp/Generated/Pkmnlib/StatCalculator.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Pkmnlib.Generated
|
||||
{
|
||||
internal static class StatCalculator
|
||||
{
|
||||
/// <returns>StatCalculator *</returns>
|
||||
[DllImport("pkmnLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "PkmnLib_StatCalculator_Construct")]
|
||||
internal static extern IntPtr Construct();
|
||||
|
||||
/// <param name="p">StatCalculator *</param>
|
||||
/// <returns>void</returns>
|
||||
[DllImport("pkmnLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "PkmnLib_StatCalculator_Destruct")]
|
||||
internal static extern void Destruct(IntPtr p);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user