mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-29 03:46:24 +02:00
12 lines
292 B
C#
12 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; }
|
|
}
|
|
}
|