1
0
forked from MeloNX/MeloNX
2024-01-19 07:32:43 +00:00

13 lines
292 B
C#

using LibRyujinx.Jni.Pointers;
using System;
namespace LibRyujinx.Jni.Values
{
public readonly struct JNativeMethod
{
internal CCharSequence Name { get; init; }
internal CCharSequence Signature { get; init; }
internal IntPtr Pointer { get; init; }
}
}