mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-09 22:52:42 -05: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;
|
|
}
|
|
}
|
|
}
|