Initial commit, implements Forme

This commit is contained in:
2020-05-02 19:54:07 +02:00
commit 35388de524
132 changed files with 6586 additions and 0 deletions

View 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);
}
}