mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-27 19:08:05 +02:00
13 lines
211 B
C#
13 lines
211 B
C#
namespace ARMeilleure.Translation
|
|
{
|
|
public class DelegateInfo
|
|
{
|
|
public nint FuncPtr { get; }
|
|
|
|
public DelegateInfo(nint funcPtr)
|
|
{
|
|
FuncPtr = funcPtr;
|
|
}
|
|
}
|
|
}
|