14 lines
286 B
C#
14 lines
286 B
C#
using LibRyujinx.Jni.References;
|
|
|
|
using Rxmxnx.PInvoke;
|
|
using System;
|
|
|
|
namespace LibRyujinx.Jni.Values;
|
|
|
|
public readonly struct JavaVMAttachArgs
|
|
{
|
|
internal Int32 Version { get; init; }
|
|
internal ReadOnlyValPtr<Byte> Name { get; init; }
|
|
internal JObjectLocalRef Group { get; init; }
|
|
}
|