mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-03 22:37:43 +02:00
11 lines
216 B
C#
11 lines
216 B
C#
namespace ARMeilleure.Translation
|
|
{
|
|
class DelegateInfo
|
|
{
|
|
public nint FuncPtr { get; private set; }
|
|
public DelegateInfo(nint funcPtr)
|
|
{
|
|
FuncPtr = funcPtr;
|
|
}
|
|
}
|
|
}
|