mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-06 18:28:29 +02:00
20 lines
458 B
C#
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;
|
|
}
|
|
}
|
|
}
|