mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-13 21:36:31 +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;
|
|
}
|
|
}
|
|
}
|