mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 01:29:48 -06:00
14 lines
231 B
C#
14 lines
231 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Translation
|
|
{
|
|
class DelegateInfo
|
|
{
|
|
public nint FuncPtr { get; private set; }
|
|
public DelegateInfo(nint funcPtr)
|
|
{
|
|
FuncPtr = funcPtr;
|
|
}
|
|
}
|
|
}
|