Files
Ryujinx/src/ARMeilleure/Translation/DelegateInfo.cs
2024-09-15 17:39:10 -03:00

20 lines
458 B
C#

using System;
namespace ARMeilleure.Translation
{
class DelegateInfo
{
#pragma warning disable IDE0052 // Remove unread private member
private readonly Delegate _dlg; // Ensure that this delegate will not be garbage collected.
#pragma warning restore IDE0052
public IntPtr FuncPtr { get; }
public DelegateInfo(Delegate dlg, IntPtr funcPtr)
{
_dlg = dlg;
FuncPtr = funcPtr;
}
}
}