PkmnLibSharp/PkmnLibSharp/Generated/Pkmnlib/WeatherChangeEvent.cs

20 lines
718 B
C#
Raw Normal View History

2020-05-02 17:54:07 +00:00
using System;
using System.Runtime.InteropServices;
namespace Pkmnlib.Generated
{
internal static class WeatherChangeEvent
{
/// <param name="p">WeatherChangeEvent *</param>
/// <returns>void</returns>
[DllImport("pkmnLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "PkmnLib_WeatherChangeEvent_Destruct")]
internal static extern void Destruct(IntPtr p);
/// <param name="p">WeatherChangeEvent *</param>
/// <returns>const char *</returns>
[DllImport("pkmnLib", CallingConvention = CallingConvention.Cdecl, EntryPoint= "PkmnLib_WeatherChangeEvent_GetWeatherName")]
2020-05-02 20:58:08 +00:00
internal static extern IntPtr GetWeatherName(IntPtr p);
2020-05-02 17:54:07 +00:00
}
}