mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-03-11 21:55:31 +00: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;
|
|
}
|
|
}
|
|
}
|