mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 20:43:09 +00:00
12 lines
313 B
C#
12 lines
313 B
C#
|
using System;
|
|||
|
using System.Runtime.InteropServices;
|
|||
|
|
|||
|
namespace Toolbox.Library.IO
|
|||
|
{
|
|||
|
public class MarioTennisCmp32
|
|||
|
{
|
|||
|
[DllImport("Lib/LibTennis32.dll", CallingConvention = CallingConvention.Cdecl)]
|
|||
|
public static extern void DecompressBuffer(IntPtr output, IntPtr input, uint len);
|
|||
|
}
|
|||
|
}
|