mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-30 01:37:06 +00:00
14 lines
230 B
C#
14 lines
230 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Translation
|
|
{
|
|
public class DelegateInfo
|
|
{
|
|
public IntPtr FuncPtr { get; }
|
|
|
|
public DelegateInfo(IntPtr funcPtr)
|
|
{
|
|
FuncPtr = funcPtr;
|
|
}
|
|
}
|
|
}
|